Selaa lähdekoodia

Added g/G mappings for goto first/last image

master
Bert 14 vuotta sitten
vanhempi
commit
2f7bd169ea
1 muutettua tiedostoa jossa 14 lisäystä ja 0 poistoa
  1. +14
    -0
      main.c

+ 14
- 0
main.c Näytä tiedosto

@@ -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 '+':


Loading…
Peruuta
Tallenna