1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-03 03:16:46 +02:00

a few UI changes

This commit is contained in:
Jfreegman
2014-09-25 04:31:45 -04:00
parent 3a176e1cab
commit 2e65ee3609
5 changed files with 16 additions and 8 deletions

View File

@ -272,7 +272,7 @@ static void prompt_onDraw(ToxWindow *self, Tox *m)
} else {
wprintw(statusbar->topline, " [Offline]");
wattron(statusbar->topline, A_BOLD);
wprintw(statusbar->topline, " %s ", statusbar->nick);
wprintw(statusbar->topline, " %s", statusbar->nick);
wattroff(statusbar->topline, A_BOLD);
}
@ -300,7 +300,7 @@ static void prompt_onDraw(ToxWindow *self, Tox *m)
}
if (statusbar->statusmsg[0])
wprintw(statusbar->topline, " - %s", statusbar->statusmsg);
wprintw(statusbar->topline, " : %s", statusbar->statusmsg);
mvwhline(self->window, y2 - CHATBOX_HEIGHT, 0, ACS_HLINE, x2);