Added status bar refresh to main loop

This commit is contained in:
James Booth
2012-02-12 22:34:31 +00:00
parent bff2210b7f
commit e112ef5aac
4 changed files with 22 additions and 15 deletions

View File

@@ -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 {