mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 16:46:22 +00:00
Tidy _ui_draw_win_title
This commit is contained in:
@@ -1359,12 +1359,17 @@ _ui_draw_win_title(void)
|
||||
gint unread = ui_unread();
|
||||
|
||||
if (unread != 0) {
|
||||
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str, unread, jid, '\007');
|
||||
snprintf(new_win_title, sizeof(new_win_title),
|
||||
"%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str,
|
||||
unread, jid, '\007');
|
||||
} else {
|
||||
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007');
|
||||
snprintf(new_win_title, sizeof(new_win_title),
|
||||
"%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid,
|
||||
'\007');
|
||||
}
|
||||
} else {
|
||||
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s%c", '\033', "Profanity", version_str->str, '\007');
|
||||
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s%c", '\033',
|
||||
"Profanity", version_str->str, '\007');
|
||||
}
|
||||
|
||||
g_string_free(version_str, TRUE);
|
||||
|
||||
Reference in New Issue
Block a user