summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-30 22:24:26 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-30 22:24:26 +0100
commitb22653a98ed9252b88455c55e15c888c66c97927 (patch)
tree0c2952f20cc67ca641e0b976397819898e330865
parent61abe7d8f827ec31f098e8abcdf58846b956ef16 (diff)
patch 9.0.0337: flicker when resetting cmdline_row after updating the screenv9.0.0337
Problem: Flicker when resetting cmdline_row after updating the screen. Solution: Do not update cmdline_row. (issue #11017)
-rw-r--r--src/drawscreen.c4
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/src/drawscreen.c b/src/drawscreen.c
index e90da5f942..3153d36fd1 100644
--- a/src/drawscreen.c
+++ b/src/drawscreen.c
@@ -839,10 +839,6 @@ after_updating_screen(int may_resize_shell UNUSED)
// handle the drop now.
handle_any_postponed_drop();
#endif
-
- if (p_ch == 0)
- // in case it was changed in dont_use_message_window()
- cmdline_row = Rows;
}
/*
diff --git a/src/version.c b/src/version.c
index bfc669145b..1ff36ffc9b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -708,6 +708,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 337,
+/**/
336,
/**/
335,