Simplify cursor reset in image mode

No need to give cursor name. reset_cursor() is now the only place to decide
what cursor to fall back to.
This commit is contained in:
Bert Münnich
2017-10-05 13:49:11 +02:00
parent d81442f55d
commit ee908ca0a1
2 changed files with 3 additions and 3 deletions

View File

@ -351,8 +351,8 @@ bool ci_drag(arg_t _)
x = e.xmotion.x;
y = e.xmotion.y;
}
win_set_cursor(&win, CURSOR_ARROW);
set_timeout(reset_cursor, TO_CURSOR_HIDE, true);
reset_cursor();
return true;
}