aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-23 18:20:08 +0100
committerBert <ber.t@gmx.com>2011-01-23 18:20:08 +0100
commitd3da0eb71e279f394803eea99f3b1be7b94bd511 (patch)
treeee00574b917fae966a0494b706ca43a74ac164ec /main.c
parentbce599038ceac361c09e9d715e8c94716d6c3d0c (diff)
downloadnsxiv-d3da0eb71e279f394803eea99f3b1be7b94bd511.tar.zst
Added man page
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index fca12e8..9b7ed6b 100644
--- a/main.c
+++ b/main.c
@@ -154,7 +154,7 @@ void on_keypress(XEvent *ev) {
cleanup();
exit(0);
- /* navigate through image list */
+ /* navigate image list */
case 'n':
if (fileidx + 1 < filecnt) {
img_load(&img, filenames[++fileidx]);
@@ -219,7 +219,7 @@ void on_keypress(XEvent *ev) {
changed = img_pan(&img, &win, PAN_RIGHT);
break;
- /* change window state */
+ /* Control window */
case 'f':
win_toggle_fullscreen(&win);
break;