1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Fixed wrong message in title bar for cons window

This commit is contained in:
James Booth 2012-02-10 00:03:49 +00:00
parent a7df149ee9
commit 2137ffa25a
2 changed files with 7 additions and 4 deletions

View File

@ -12,14 +12,13 @@ void create_title_bar(void)
title_bar = newwin(1, cols, 0, 0);
wbkgd(title_bar, COLOR_PAIR(3));
mvwprintw(title_bar, 0, 0, title);
wrefresh(title_bar);
title_bar_show(title);
}
void title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, title);
mvwprintw(title_bar, 0, 0, " %s", title);
wrefresh(title_bar);
}

View File

@ -45,7 +45,11 @@ void switch_to(int i)
wrefresh(wins[i].win);
curr_win = i;
title_bar_show(wins[i].from);
if (i == 0) {
title_bar_show("Console, type /help for help information");
} else {
title_bar_show(wins[i].from);
}
}
void close_win(void)