summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-17 17:38:48 +0100
committerBert <ber.t@gmx.com>2011-02-17 17:38:48 +0100
commitf235b62741c74879fbe7b784d60b7ee8981f77bb (patch)
tree3b4bd98393efadab2484e5707c768dc6b8fc96ec /main.c
parente2ef9b8323a475f5e9f1a5692578e59df47eeb9b (diff)
downloadnsxiv-f235b62741c74879fbe7b784d60b7ee8981f77bb.tar.zst
Fixed cursor when opening thumb
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index 35326fd..24e43d3 100644
--- a/main.c
+++ b/main.c
@@ -397,6 +397,7 @@ void on_keypress(XKeyEvent *kev) {
fileidx = sel;
load_image();
mode = MODE_NORMAL;
+ win_set_cursor(&win, CURSOR_ARROW);
changed = 1;
break;
@@ -498,6 +499,7 @@ void on_buttonpress(XButtonEvent *bev) {
fileidx = sel;
load_image();
mode = MODE_NORMAL;
+ win_set_cursor(&win, CURSOR_ARROW);
changed = 1;
break;
}