commit 12ba5e21a1193b98af6ee1e5eb3da838d5c788f1 from: Omar Polo date: Mon Feb 19 15:58:23 2024 UTC use wmove instead of mvwprintw with an empty format string commit - cfd1de029f7a27e08bbd263afa433b3208c45372 commit + 12ba5e21a1193b98af6ee1e5eb3da838d5c788f1 blob - 67514fe337cc20f21f8eb58d02e1c55d9912bdbf blob + 6ec9314b6ce98bc82f7a80268211c1c4012e5d32 --- ui.c +++ ui.c @@ -1165,7 +1165,7 @@ ui_init(void) wtimeout(body, 0); wtimeout(help, 0); - mvwprintw(body, 0, 0, ""); + wmove(body, 0, 0); return 1; }