Shortcuts to apply rank and color labels and a new direct popup menu for color labels, all in the File Browser (issue 1839)

This commit is contained in:
michael
2013-04-14 11:35:48 -04:00
parent 0acb05f5c8
commit 6e055260e5
5 changed files with 128 additions and 12 deletions

View File

@@ -1773,7 +1773,7 @@ bool FileCatalog::handleShortcutKey (GdkEventKey* event) {
}
}
if (!alt) {
if (!alt && !shift) { // shift is reserved for ranking
switch(event->keyval) {
case GDK_grave:
categoryButtonToggled(bUnRanked,false);
@@ -1809,7 +1809,7 @@ bool FileCatalog::handleShortcutKey (GdkEventKey* event) {
}
}
if (alt) {
if (alt && !shift) { // shift is reserved for color labeling
switch(event->keyval) {
case GDK_grave:
categoryButtonToggled(bUnCLabeled,false);