[Digikam-devel] [Bug 145558] in menu view: window size/original size: ctrl-shift-z obsolete?

Gilles Caulier caulier.gilles at gmail.com
Mon May 21 11:03:56 BST 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=145558         
caulier.gilles gmail com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From caulier.gilles gmail com  2007-05-21 12:03 -------
SVN commit 666930 by cgilles:

digiKam from trunk : Use everywhere ALT+CTRL+0 shortcut to perform "Zoom To 1:1" action instead CTRL+SHIFT+Z witch is in conflict with Redo std shortcut defined by KDE API.
Note : ALT+CTRL+0 is also used by Photoshop 7.0
BUG: 145558

 M  +1 -1      digikam/digikamapp.cpp  
 M  +3 -2      utilities/imageeditor/editor/editorwindow.cpp  
 M  +2 -2      utilities/lighttable/lighttablewindow.cpp  


--- trunk/extragear/graphics/digikam/digikam/digikamapp.cpp #666929:666930
 @ -800,7 +800,7  @
 
     d->zoomTo100percents = new KAction(i18n("Zoom to 1:1"), 
                                    "viewmag1",
-                                   CTRL+SHIFT+Key_Z, 
+                                   ALT+CTRL+Key_0,      // NOTE: Photoshop 7 use ALT+CTRL+0.
                                    d->view, 
                                    SLOT(slotZoomTo100Percents()),
                                    actionCollection(), 
--- trunk/extragear/graphics/digikam/utilities/imageeditor/editor/editorwindow.cpp #666929:666930
 @ -331,8 +331,9  @
                                              actionCollection(), "editorwindow_zoomminus");
 
     d->zoomTo100percents = new KAction(i18n("Zoom to 1:1"), "viewmag1",
-                                   CTRL+SHIFT+Key_Z, this, SLOT(slotZoomTo100Percents()),
-                                   actionCollection(), "editorwindow_zoomto100percents");
+                                       ALT+CTRL+Key_0,      // NOTE: Photoshop 7 use ALT+CTRL+0. 
+                                       this, SLOT(slotZoomTo100Percents()),
+                                       actionCollection(), "editorwindow_zoomto100percents");
 
 
     d->zoomFitToWindowAction = new KToggleAction(i18n("Fit to &Window"), "view_fit_window",
--- trunk/extragear/graphics/digikam/utilities/lighttable/lighttablewindow.cpp #666929:666930
 @ -383,10 +383,10  @
     d->zoomMinusAction->setEnabled(false);
 
     d->zoomTo100percents = new KAction(i18n("Zoom to 1:1"), "viewmag1",
-                                       CTRL+SHIFT+Key_Z, this, SLOT(slotZoomTo100Percents()),
+                                       ALT+CTRL+Key_0,      // NOTE: Photoshop 7 use ALT+CTRL+0.
+                                       this, SLOT(slotZoomTo100Percents()),
                                        actionCollection(), "lighttable_zoomto100percents");
 
-
     d->zoomFitToWindowAction = new KAction(i18n("Fit to &Window"), "view_fit_window",
                                            CTRL+SHIFT+Key_A, this, SLOT(slotFitToWindow()),
                                            actionCollection(), "lighttable_zoomfit2window");



More information about the Digikam-devel mailing list