Added g/G mappings for goto first/last image

This commit is contained in:
Bert 2011-01-22 23:37:13 +01:00
parent bd6b05c0ed
commit 2f7bd169ea
1 changed files with 14 additions and 0 deletions

14
main.c
View File

@ -168,6 +168,20 @@ void on_keypress(XEvent *ev) {
changed = 1;
}
break;
case 'g':
if (fileidx != 0) {
fileidx = 0;
img_load(&img, filenames[fileidx]);
changed = 1;
}
break;
case 'G':
if (fileidx != filecnt - 1) {
fileidx = filecnt - 1;
img_load(&img, filenames[fileidx]);
changed = 1;
}
break;
/* zooming */
case '+':