diff options
author | James Booth <boothj5@gmail.com> | 2015-06-25 00:33:28 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-06-25 00:33:28 +0100 |
commit | fed55b5459902acdd10e5aa481bd54f00ad4c97e (patch) | |
tree | 72c48e3987517c193fc02a2f894d51f2d1cff50f /src | |
parent | 524c7a8671c8ad58371d54afbb433d67e214ef94 (diff) | |
download | profani-tty-fed55b5459902acdd10e5aa481bd54f00ad4c97e.tar.gz |
Do not update UI whilst receiving password
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/inputwin.c | 7 |
1 files changed, 0 insertions, 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; } |