mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 00:08:19 +00:00
term: Fix shell_resized for abstract_ui
This commit is contained in:
@@ -2206,7 +2206,11 @@ void win_new_shellsize(void)
|
||||
*/
|
||||
void shell_resized(void)
|
||||
{
|
||||
screen_resize(0, 0, FALSE);
|
||||
if (abstract_ui) {
|
||||
ui_refresh();
|
||||
} else {
|
||||
screen_resize(0, 0, FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user