Bug 144650 - Shift-Space doesn't work as PageUp
Summary: Shift-Space doesn't work as PageUp
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-Keyboard (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-25 11:13 UTC by Mikolaj Machowski
Modified: 2017-08-15 05:42 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 0.9.2


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mikolaj Machowski 2007-04-25 11:13:40 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

Shift-Space doesn't work as PageUp as specified in KDE HIG
Comment 1 caulier.gilles 2007-05-21 13:07:26 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()),