| Summary: | Shift-Space doesn't work as PageUp | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Mikolaj Machowski <mikmach> |
| Component: | Usability-Keyboard | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.2 | |
| Sentry Crash Report: | |||
|
Description
Mikolaj Machowski
2007-04-25 11:13:40 UTC
SVN commit 666947 by cgilles:
digikam from trunk : added new accelerator SHIFT+SPACE to go to next item in current album
BUG: 144650
M +5 -0 digikamapp.cpp
--- trunk/extragear/graphics/digikam/digikam/digikamapp.cpp #666946:666947
@@ -414,6 +414,11 @@
Key_Space, this, SIGNAL(signalNextItem()),
false, true);
+ d->accelerators->insert("Next Image SHIFT+Key_Space", i18n("Next Image"),
+ i18n("Next Image"),
+ SHIFT+Key_Space, this, SIGNAL(signalNextItem()),
+ false, true);
+
d->accelerators->insert("Previous Image Key_Backspace", i18n("Previous Image"),
i18n("Previous Image"),
Key_Backspace, this, SIGNAL(signalPrevItem()),
|