diff options
author | James Booth <boothj5@gmail.com> | 2012-02-17 02:11:14 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-02-17 02:11:14 +0000 |
commit | 672906dd1d16fe30fffb59377b8800ba35903218 (patch) | |
tree | 3ca1d3c348da370a7c10256d9bd67852f58bfff0 | |
parent | 4543a3b2c626d01fbdffd7352edd643125c52eae (diff) | |
download | profani-tty-672906dd1d16fe30fffb59377b8800ba35903218.tar.gz |
Title bar tidy up
-rw-r--r-- | title_bar.c | 4 | ||||
-rw-r--r-- | windows.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/title_bar.c b/title_bar.c index 0eb7a640..af6e4b77 100644 --- a/title_bar.c +++ b/title_bar.c @@ -20,7 +20,7 @@ void title_bar_connected(void) int rows, cols; getmaxyx(stdscr, rows, cols); - mvwprintw(title_bar, 0, cols - 12, " connected"); + mvwprintw(title_bar, 0, cols - 13, " connected"); } 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 - 12, "disconnected"); + mvwprintw(title_bar, 0, cols - 13, "disconnected"); } void title_bar_refresh(void) diff --git a/windows.c b/windows.c index d03f8905..4ca76f34 100644 --- a/windows.c +++ b/windows.c @@ -60,7 +60,7 @@ void win_switch_to(int i) _curr_win = i; if (i == 0) { - title_bar_show("Console, type /help for help information"); + title_bar_show("Profanity. Type /help for help information"); } else { title_bar_show(_wins[i].from); } @@ -77,7 +77,7 @@ void win_close_win(void) // go back to console window _curr_win = 0; - title_bar_show("Console, type /help for help information"); + title_bar_show("Profanity. Type /help for help information"); } int win_in_chat(void) |