about summary refs log tree commit diff stats
path: root/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-12 22:34:31 +0000
committerJames Booth <boothj5@gmail.com>2012-02-12 22:34:31 +0000
commite112ef5aacd15b9cd9c96bca35ca571c020284d5 (patch)
tree30c1afc702b10e6f5db75a8ad082612c98628403 /command.c
parentbff2210b7f69f04b74ac512c33da4ad1f90b7bf6 (diff)
downloadprofani-tty-e112ef5aacd15b9cd9c96bca35ca571c020284d5.tar.gz
Added status bar refresh to main loop
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/command.c b/command.c
index e8dea950..117240f4 100644
--- a/command.c
+++ b/command.c
@@ -25,10 +25,12 @@ int handle_start_command(char *cmd)
         user = strndup(cmd+9, strlen(cmd)-9);
 
         status_bar_get_password();
+        status_bar_refresh();
         char passwd[20];
         inp_get_password(passwd);
 
         status_bar_print_message(user);
+        status_bar_refresh();
         jabber_connect(user, passwd);
         result = START_MAIN;
     } else {