From 191b910d6e9358aca25f5b1b36983f2128743680 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sat, 19 Jul 2014 00:39:49 +0100 Subject: [PATCH] Erase stdscr before resizing --- src/ui/core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/core.c b/src/ui/core.c index 6bb68ff4..931fedd4 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -190,6 +190,8 @@ static void _ui_resize(const int ch, const char * const input, const int size) { log_info("Resizing UI"); + erase(); + refresh(); title_bar_resize(); wins_resize_all(); status_bar_resize();