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:
parent
a7df149ee9
commit
2137ffa25a
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user