Version: (using KDE Devel) Installed from: Compiled sources Shift-Space doesn't work as PageUp as specified in KDE HIG
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()),