Explorar el Código

Added g/G mappings for goto first/last image

master
Bert hace 14 años
padre
commit
2f7bd169ea
Se han modificado 1 ficheros con 14 adiciones y 0 borrados
  1. +14
    -0
      main.c

+ 14
- 0
main.c Ver fichero

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


Cargando…
Cancelar
Guardar