1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Changed title bar status

This commit is contained in:
James Booth 2012-02-17 02:33:58 +00:00
parent 3be7dc9c6f
commit d0f9998820

View File

@ -20,7 +20,7 @@ void title_bar_connected(void)
int rows, cols;
getmaxyx(stdscr, rows, cols);
mvwprintw(title_bar, 0, cols - 13, " connected");
mvwprintw(title_bar, 0, cols - 14, "[ ...online ]");
}
void title_bar_disconnected(void)
@ -28,7 +28,7 @@ void title_bar_disconnected(void)
int rows, cols;
getmaxyx(stdscr, rows, cols);
mvwprintw(title_bar, 0, cols - 13, "disconnected");
mvwprintw(title_bar, 0, cols - 14, "[ ..offline ]");
}
void title_bar_refresh(void)