[Digikam-devel] [Bug 133091] changing date/time with numblock changes also the orientation
Gilles Caulier
caulier.gilles at kdemail.net
Fri Dec 8 05:15:05 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
caulier.gilles kdemail net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From caulier.gilles kdemail net 2006-12-08 06:15 -------
SVN commit 611430 by cgilles:
digikam from trunk : instead to use '7', '8', and '9' keys to rotate an image in editor, use CTRL+7, CTRL+8, CTRL+9 to prevent conflic with Comments & Tags side bar.
BUG: 133091
M +6 -6 editorwindow.cpp
M +2 -3 editorwindow.h
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.cpp #611429:611430
@ -1,6 +1,6 @
/* ============================================================
- * Author: Gilles Caulier <caulier dot gilles at kdemail dot net>
- * Date : 2006-01-20
+ * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Date : 2006-01-20
* Description : main image editor GUI implementation
*
* Copyright 2006 by Gilles Caulier
@ -131,10 +131,10 @
EditorWindow::~EditorWindow()
{
delete m_canvas;
- delete d->ICCSettings;
delete m_IOFileSettings;
delete m_savingContext;
delete m_slideShow;
+ delete d->ICCSettings;
delete d;
}
@ -373,15 +373,15 @
d->rotateAction->setDelayed(false);
d->rotate90Action = new KAction(i18n("90 Degrees"),
- 0, Key_9, m_canvas, SLOT(slotRotate90()),
+ 0, CTRL+Key_9, m_canvas, SLOT(slotRotate90()),
actionCollection(),
"rotate_90");
d->rotate180Action = new KAction(i18n("180 Degrees"),
- 0, Key_8, m_canvas, SLOT(slotRotate180()),
+ 0, CTRL+Key_8, m_canvas, SLOT(slotRotate180()),
actionCollection(),
"rotate_180");
d->rotate270Action = new KAction(i18n("270 Degrees"),
- 0, Key_7, m_canvas, SLOT(slotRotate270()),
+ 0, CTRL+Key_7, m_canvas, SLOT(slotRotate270()),
actionCollection(),
"rotate_270");
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.h #611429:611430
@ -1,6 +1,6 @
/* ============================================================
- * Author: Gilles Caulier <caulier dot gilles at kdemail dot net>
- * Date : 2006-01-20
+ * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Date : 2006-01-20
* Description : main image editor GUI implementation
*
* Copyright 2006 by Gilles Caulier
@ -208,7 +208,6 @
private:
EditorWindowPriv *d;
-
};
} // namespace Digikam
More information about the Digikam-devel
mailing list