Summary: | Ctrl-Y does not tied to Redo | ||
---|---|---|---|
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: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.2 | |
Sentry Crash Report: |
Description
Mikolaj Machowski
2007-05-05 20:43:52 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() |