Bug 145078

Summary: Ctrl-Y does not tied to Redo
Product: [Applications] digikam Reporter: Mikolaj Machowski <mikmach>
Component: Usability-KeyboardAssignee: Digikam Developers <digikam-bugs-null>
Status: RESOLVED FIXED    
Severity: normal CC: caulier.gilles
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In: 0.9.2

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()