# HG changeset patch # User Bram Moolenaar # Date 1661895003 -7200 # Node ID 74f82d4dae9c8cdd6ceb3a936faa4203ad26794d # Parent 40cab76694a169a090c9915e60881eb371e3398c patch 9.0.0337: flicker when resetting cmdline_row after updating the screen Commit: https://github.com/vim/vim/commit/b22653a98ed9252b88455c55e15c888c66c97927 Author: Bram Moolenaar Date: Tue Aug 30 22:24:26 2022 +0100 patch 9.0.0337: flicker when resetting cmdline_row after updating the screen Problem: Flicker when resetting cmdline_row after updating the screen. Solution: Do not update cmdline_row. (issue https://github.com/vim/vim/issues/11017) diff --git a/src/drawscreen.c b/src/drawscreen.c --- a/src/drawscreen.c +++ b/src/drawscreen.c @@ -839,10 +839,6 @@ after_updating_screen(int may_resize_she // 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 --- 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,