mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
ui: Fix TUI resize bug
statusline still disappears in some cases, but this change is a net improvement. References #3929 #5692 #4884 #6157
This commit is contained in:

committed by
Justin M. Keyes

parent
a568816253
commit
6777b6ecbc
@@ -161,6 +161,11 @@ void ui_refresh(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (updating_screen) {
|
||||||
|
ui_schedule_refresh();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
int width = INT_MAX, height = INT_MAX;
|
int width = INT_MAX, height = INT_MAX;
|
||||||
bool pum_external = true;
|
bool pum_external = true;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user