about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-10-06 23:21:47 +0100
committerJames Booth <boothj5@gmail.com>2015-10-06 23:21:47 +0100
commitde15d47be4bb43f039a27bbd39dc41fd7e10ad59 (patch)
tree12db005b41c83c4878b24575b57d6d2d519d2f87 /src/ui
parent09cd28818665b12ccb0800009a82c4df5f272a3b (diff)
downloadprofani-tty-de15d47be4bb43f039a27bbd39dc41fd7e10ad59.tar.gz
Fixed resize during password and tls commands
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/inputwin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index af738cc6..43e2a3a7 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -235,6 +235,7 @@ inp_get_line(void)
     char *line = NULL;
     while (!line) {
         line = inp_readline();
+        ui_update();
     }
     status_bar_clear();
     return line;
@@ -251,6 +252,7 @@ inp_get_password(void)
     get_password = TRUE;
     while (!password) {
         password = inp_readline();
+        ui_update();
     }
     get_password = FALSE;
     status_bar_clear();