Set title in statusUpdate
parent
2f9a9c663a
commit
a507ff4073
10
ui.c
10
ui.c
|
@ -296,6 +296,16 @@ static void statusUpdate(void) {
|
||||||
styleAdd(status, buf, true);
|
styleAdd(status, buf, true);
|
||||||
}
|
}
|
||||||
wclrtoeol(status);
|
wclrtoeol(status);
|
||||||
|
|
||||||
|
int unread;
|
||||||
|
char buf[256];
|
||||||
|
snprintf(
|
||||||
|
buf, sizeof(buf), "%s %s%n (%d)",
|
||||||
|
self.network, idNames[windows.active->id],
|
||||||
|
&unread, windows.active->unread
|
||||||
|
);
|
||||||
|
if (!windows.active->unread) buf[unread] = '\0';
|
||||||
|
termTitle(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void uiShowID(size_t id) {
|
void uiShowID(size_t id) {
|
||||||
|
|
Loading…
Reference in New Issue