소스 검색

Go to next/previous image

master
Bert 14 년 전
부모
커밋
004f297ebb
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. +14
    -0
      main.c

+ 14
- 0
main.c 파일 보기

@@ -102,6 +102,20 @@ void on_keypress(XEvent *ev) {
case XK_q:
cleanup();
exit(0);
case XK_n:
case XK_space:
if (fileidx + 1 < options->filecnt) {
img_load(&img, options->filenames[++fileidx]);
img_display(&img, &win);
}
break;
case XK_p:
case XK_BackSpace:
if (fileidx > 0) {
img_load(&img, options->filenames[--fileidx]);
img_display(&img, &win);
}
break;
}
}



불러오는 중...
취소
저장