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

@@ -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)