diff options
author | June McEnroe <june@causal.agency> | 2020-02-15 04:54:53 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-15 04:54:53 -0500 |
commit | 42d106260b5e881aad7bc4cf6c73ffb1b30b5abb (patch) | |
tree | 3a0ce91447067c10f7b47c3aa3e197545b875639 /ui.c | |
parent | Add /ns and /cs (diff) | |
download | catgirl-42d106260b5e881aad7bc4cf6c73ffb1b30b5abb.tar.gz catgirl-42d106260b5e881aad7bc4cf6c73ffb1b30b5abb.zip |
Separate network info from self
Diffstat (limited to '')
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c index 3b1fdc1..9cfc2eb 100644 --- a/ui.c +++ b/ui.c @@ -426,7 +426,7 @@ static void statusUpdate(void) { wclrtoeol(status); const struct Window *window = windows.ptrs[windows.show]; - snprintf(title, sizeof(title), "%s %s", self.network, idNames[window->id]); + snprintf(title, sizeof(title), "%s %s", network.name, idNames[window->id]); if (window->mark && window->unreadWarm) { snprintf( &title[strlen(title)], sizeof(title) - strlen(title), |