From fed55b5459902acdd10e5aa481bd54f00ad4c97e Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 25 Jun 2015 00:33:28 +0100 Subject: [PATCH] Do not update UI whilst receiving password --- src/ui/inputwin.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index b67efbc8..2c42a628 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -246,15 +246,8 @@ inp_get_password(void) get_password = TRUE; while (!password) { password = inp_readline(); - ui_update(); - werase(inp_win); - wmove(inp_win, 0, 0); - pad_start = 0; - _inp_win_update_virtual(); - doupdate(); } get_password = FALSE; - status_bar_clear(); return password; }