aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.c b/main.c
index 5c29e8e..c7b102e 100644
--- a/main.c
+++ b/main.c
@@ -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 '+':