[Digikam-devel] [Bug 131743] Comments and tag edit widgets should retain focus when changing image
Gilles Caulier
caulier.gilles at kdemail.net
Wed Jan 3 10:11:00 GMT 2007
------- 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=131743
------- Additional Comments From caulier.gilles kdemail net 2007-01-03 11:10 -------
SVN commit 619391 by cgilles:
digikam from trunk : Image editor Curve Tool shortcut : use "CTRL+U" instead "SHIFT+C" to prevent conflict with new rule from Comments Text edit widget focus from right side bar.
CCBUGS: 131743
M +2 -2 digikamimageplugin_adjustcurves_ui.rc
M +6 -8 imageplugin_adjustcurves.cpp
--- trunk/extragear/graphics/digikamimageplugins/adjustcurves/digikamimageplugin_adjustcurves_ui.rc #619390:619391
@ -1,5 +1,5 @
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<kpartgui version="2" name="digikamimageplugin_adjustcurves" >
+<kpartgui version="3" name="digikamimageplugin_adjustcurves" >
<MenuBar>
@ -18,7 +18,7 @
</ToolBar>
<ActionProperties>
- <Action shortcut="Shift+C" name="imageplugin_adjustcurves" />
+ <Action name="imageplugin_adjustcurves" />
</ActionProperties>
</kpartgui>
--- trunk/extragear/graphics/digikamimageplugins/adjustcurves/imageplugin_adjustcurves.cpp #619390:619391
@ -1,10 +1,9 @
/* ============================================================
- * File : imageplugin_adjustcurves.cpp
- * Author: Gilles Caulier <caulier dot gilles at kdemail dot net>
- * Date : 2004-12-01
+ * Authors: Gilles Caulier <caulier dot gilles at kdemail dot net>
+ * Date : 2004-12-01
* Description :
*
- * Copyright 2004-2006 by Gilles Caulier
+ * Copyright 2004-2007 by Gilles Caulier
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
@ -32,6 +31,7 @
#include "bannerwidget.h"
#include "adjustcurves.h"
#include "imageplugin_adjustcurves.h"
+#include "imageplugin_adjustcurves.moc"
K_EXPORT_COMPONENT_FACTORY( digikamimageplugin_adjustcurves,
KGenericFactory<ImagePlugin_AdjustCurves>("digikamimageplugin_adjustcurves"));
@ -40,7 +40,8 @
const QStringList &)
: Digikam::ImagePlugin(parent, "ImagePlugin_AdjustCurves")
{
- m_curvesAction = new KAction(i18n("Curves Adjust..."), "adjustcurves", 0,
+ m_curvesAction = new KAction(i18n("Curves Adjust..."), "adjustcurves",
+ CTRL+Key_U,
this, SLOT(slotCurvesAdjust()),
actionCollection(), "imageplugin_adjustcurves");
@ -67,6 +68,3 @
dlg.exec();
delete headerFrame;
}
-
-
-#include "imageplugin_adjustcurves.moc"
More information about the Digikam-devel
mailing list