mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Changed title bar status
This commit is contained in:
parent
3be7dc9c6f
commit
d0f9998820
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user