[Digikam-devel] [Bug 133091] changing date/time with numblock changes also the orientation
Gilles Caulier
caulier.gilles at kdemail.net
Sun Dec 10 10:04:31 GMT 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=133091
------- Additional Comments From caulier.gilles kdemail net 2006-12-10 11:04 -------
SVN commit 612074 by cgilles:
digikam from trunk : Image Editor : Fix horizontally and vertically flip actions keyboard shortcuts to prevents any problems with right sidebar :
flip H : '*' ==> CTRL + '*'
flip V : '/' ==> CTRL + '/'
CCBUGS: 133091
M +2 -2 editorwindow.cpp
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.cpp #612073:612074
@ -354,11 +354,11 @
d->flipAction = new KActionMenu(i18n("Flip"), "flip", actionCollection(), "editorwindow_flip");
d->flipAction->setDelayed(false);
- d->flipHorzAction = new KAction(i18n("Horizontally"), 0, Key_Asterisk,
+ d->flipHorzAction = new KAction(i18n("Horizontally"), 0, CTRL+Key_Asterisk,
m_canvas, SLOT(slotFlipHoriz()),
actionCollection(), "editorwindow_fliphorizontal");
- d->flipVertAction = new KAction(i18n("Vertically"), 0, Key_Slash,
+ d->flipVertAction = new KAction(i18n("Vertically"), 0, CTRL+Key_Slash,
m_canvas, SLOT(slotFlipVert()),
actionCollection(), "editorwindow_flipvertical");
More information about the Digikam-devel
mailing list