Browse Source

Activate thumb-mode with Return key

master
Bert 14 years ago
parent
commit
76cca4ecb6
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      main.c

+ 12
- 0
main.c View File

@@ -378,6 +378,18 @@ void on_keypress(XKeyEvent *kev) {
}
break;

/* switch to thumnail mode */
case XK_Return:
if (options->thumbnails) {
if (fileidx < tns.cnt)
tns.sel = fileidx;
else
tns.sel = 0;
mode = MODE_THUMBS;
changed = 1;
}
break;

/* miscellaneous */
case XK_a:
img_toggle_antialias(&img);


Loading…
Cancel
Save