| Summary: | Space and Shift-Space isn't used for navigation between images | ||
|---|---|---|---|
| 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-05-05 21:00:12 UTC
Mik, SPACE is already defined like a shortcut to Next image action and work very well in editor. SHIFT+SPACE is not yet defined. Gilles SVN commit 666912 by cgilles:
digikam from trunk : added new accelerator SHIFT+SPACE to go to next image in editor
BUG: 145083
M +6 -1 editorwindow.cpp
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.cpp #666911:666912
@@ -476,6 +476,11 @@
Key_Space, this, SLOT(slotForward()),
false, true);
+ d->accelerators->insert("Next Image SHIFT+Key_Space", i18n("Next Image"),
+ i18n("Load Next Image"),
+ SHIFT+Key_Space, this, SLOT(slotForward()),
+ false, true);
+
d->accelerators->insert("Previous Image Key_Backspace", i18n("Previous Image"),
i18n("Load Previous Image"),
Key_Backspace, this, SLOT(slotBackward()),
@@ -501,7 +506,7 @@
Key_Minus, this, SLOT(slotDecreaseZoom()),
false, true);
- d->accelerators->insert("Redo", i18n("Redo"),
+ d->accelerators->insert("Redo CTRL+Key_Y", i18n("Redo"),
i18n("Redo Last action"),
CTRL+Key_Y, m_canvas, SLOT(slotRedo()),
false, true);
Mik, Gilles, triggered by discussion on the IRC I re-read this bug: The original wish was: SHIFT+space should go to the previous image. The patch provides: SHIFT+space goes to the next image. I don't think that this was intended. Reopening bug... Its trivial to fix, so let me know if I should do so. Dnia Wednesday 09 of April 2008, Arnd Baecker napisaĆ: > I don't think that this was intended. Reopening bug... > > Its trivial to fix, so let me know if I should do so. Yes, please. SHIFT+SPACE combo comes from KDE HIG for keyboard shortcuts. digiKam should conform to this spec. Arnd, Fine for me. let's go Gilles SVN commit 795401 by abaecker: Use SHIFT+Space to go to the previous image in the image editor. CCBUGS: 145083 TODO:KDE4PORT M +2 -1 NEWS M +3 -3 utilities/imageeditor/editor/editorwindow.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=795401 SVN commit 795407 by abaecker: Use SHIFT+Space to go to the previous image in the light-table. CCBUGS: 145083 TODO:KDE4PORT M +5 -0 lighttablewindow.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=795407 SVN commit 795744 by cgilles: backport commits #795407 and #795401 from KDE3 branch BUG: 145083 M +5 -0 imageeditor/editor/editorwindow.cpp M +5 -0 lighttable/lighttablewindow.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=795744 SVN commit 796052 by abaecker: Use SHIFT+Space to go to the previous image in the icon view. CCBUGS: 145083 TODO:KDE4PORT M +3 -3 digikamapp.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=796052 |