1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

core: fix command /cursor stop (do not toggle cursor mode) (closes #964)

This commit is contained in:
Sébastien Helleu
2017-04-25 07:20:34 +02:00
parent a96d27f236
commit 2a43f45947
4 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -1674,7 +1674,7 @@ COMMAND_CALLBACK(cursor)
if (string_strcasecmp (argv[1], "stop") == 0)
{
gui_cursor_mode_toggle ();
gui_cursor_mode_stop ();
return WEECHAT_RC_OK;
}