Ver código fonte

Added g/G mappings for goto first/last image

master
Bert 14 anos atrás
pai
commit
2f7bd169ea
1 arquivos alterados com 14 adições e 0 exclusões
  1. +14
    -0
      main.c

+ 14
- 0
main.c Ver arquivo

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


Carregando…
Cancelar
Salvar