mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06: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:
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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user