From e21d69eec1870a3f4732653aa8ee25d5da10128c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 5 Jun 2017 19:32:32 +0200 Subject: [PATCH] patch 8.0.0626: in the GUI the cursor may flicker Problem: In the GUI the cursor may flicker. Solution: Check the cmd_silent flag before updating the cursor shape. (Hirohito Higashi, closes #1637) --- src/getchar.c | 12 ++++++++++-- src/version.c | 2 ++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/getchar.c b/src/getchar.c index 18af2a374..ab3250aa3 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -2913,8 +2913,16 @@ vgetorpeek(int advance) } #ifdef FEAT_GUI /* may unshow different cursor shape */ - if (gui.in_use && shape_changed) - gui_update_cursor(TRUE, FALSE); + if (gui.in_use) + { + if (cmd_silent) + gui_dont_update_cursor(TRUE); + else + gui_can_update_cursor(); + + if (shape_changed) + gui_update_cursor(TRUE, FALSE); + } #endif --vgetc_busy; diff --git a/src/version.c b/src/version.c index 0280ca810..65dc83f47 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 626, /**/ 625, /**/ -- 2.50.1