Bug 144643 - Ctrl-Shift-A does not deselect in Album GUI
Summary: Ctrl-Shift-A does not deselect in Album GUI
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-Keyboard (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-25 11:00 UTC by Mikolaj Machowski
Modified: 2017-08-15 05:29 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 0.9.2


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mikolaj Machowski 2007-04-25 11:00:35 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

Ctrl-Shift-A does not remove selection of items in Album GUI.
Comment 1 caulier.gilles 2007-05-21 12:42:19 UTC
SVN commit 666940 by cgilles:

digikam from trunk : Album GUI : Add CTRL+SHIFT+A accelerator to unselect items from current album.
CCBUGS: 144643

 M  +5 -0      digikamapp.cpp  


--- trunk/extragear/graphics/digikam/digikam/digikamapp.cpp #666939:666940
@@ -448,6 +448,11 @@
                            i18n("Paste Album Items Selection"),
                            CTRL+Key_V, this, SIGNAL(signalPasteAlbumItemsSelection()),
                            false, true);
+
+    d->accelerators->insert("Select None CTRL+SHIFT+Key_A", i18n("Select None"),
+                           i18n("Select None"),
+                           CTRL+SHIFT+Key_A, d->view, SIGNAL(slotSelectNone()),
+                           false, true);
 }
 
 void DigikamApp::setupActions()
Comment 2 caulier.gilles 2007-05-21 12:44:24 UTC
*** Bug has been marked as fixed ***.