Bug 145078 - Ctrl-Y does not tied to Redo
Summary: Ctrl-Y does not tied to Redo
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-05-05 20:43 UTC by Mikolaj Machowski
Modified: 2017-08-07 21:13 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-05-05 20:43:52 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources
OS:                Linux

Ctrl-Y does not tied to Redo as it should do according to KDE HIG.
Comment 1 caulier.gilles 2007-05-21 10:15:18 UTC
SVN commit 666899 by cgilles:

digikam from trunk : added new accelerator CTRL+Y to Redo and action
BUG: 145078

 M  +5 -0      editorwindow.cpp  


--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.cpp #666898:666899
@@ -500,6 +500,11 @@
                     i18n("Zoom out of Image"),
                     Key_Minus, this, SLOT(slotDecreaseZoom()),
                     false, true);
+
+    d->accelerators->insert("Redo", i18n("Redo"),
+                    i18n("Redo Last action"),
+                    CTRL+Key_Y, m_canvas, SLOT(slotRedo()),
+                    false, true);
 }
 
 void EditorWindow::setupStatusBar()