Fix screen not being redrawn after resize

This commit is contained in:
Kovid Goyal 2016-11-29 13:20:48 +05:30
parent d192561e18
commit 2ecc98cdd0

View File

@ -116,6 +116,7 @@ static bool screen_resize(Screen *self, unsigned int lines, unsigned int columns
self->tabstops = self->main_tabstops;
init_tabstops(self->main_tabstops, self->columns);
init_tabstops(self->alt_tabstops, self->columns);
tracker_update_screen(self->change_tracker);
return true;
}