diff options
author | James Booth <boothj5@gmail.com> | 2013-08-28 23:23:46 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-08-28 23:23:46 +0100 |
commit | 4bfb369d2fe8295f3da008558a5580b9282c0f3c (patch) | |
tree | e70cf0dc8bfa8b7a500af110f999ffde3b3e9d1f /src/ui | |
parent | 8a35bae267f9a016e5266f8e6cce1413ab0c6813 (diff) | |
download | profani-tty-4bfb369d2fe8295f3da008558a5580b9282c0f3c.tar.gz |
Set all inactive before tidy
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/windows.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/windows.c b/src/ui/windows.c index 0bfb60a8..7b463ac1 100644 --- a/src/ui/windows.c +++ b/src/ui/windows.c @@ -325,6 +325,10 @@ wins_tidy(void) } if (tidy_required) { + int i = 0; + for (i = 0; i < 12; i++) { + status_bar_inactive(i); + } GHashTable *new_windows = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify)win_free); |