about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-06-25 00:33:28 +0100
committerJames Booth <boothj5@gmail.com>2015-06-25 00:33:28 +0100
commitfed55b5459902acdd10e5aa481bd54f00ad4c97e (patch)
tree72c48e3987517c193fc02a2f894d51f2d1cff50f /src/ui
parent524c7a8671c8ad58371d54afbb433d67e214ef94 (diff)
downloadprofani-tty-fed55b5459902acdd10e5aa481bd54f00ad4c97e.tar.gz
Do not update UI whilst receiving password
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/inputwin.c7
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;
 }