1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Moved unread in titlebar

This commit is contained in:
James Booth 2012-11-29 20:57:55 +00:00
parent 1780148f59
commit 23e4ba73d4

View File

@ -140,7 +140,7 @@ ui_refresh(void)
gint unread = _win_get_unread(); gint unread = _win_get_unread();
if (unread != 0) { if (unread != 0) {
printf("%c]0;*%s%s - %s (%d unread)%c", '\033', "Profanity", version_str->str, jid, unread, '\007'); printf("%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str, unread, jid, '\007');
} else { } else {
printf("%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007'); printf("%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007');
} }