Fixed ">" indicator when tidying windows

This commit is contained in:
James Booth
2013-08-30 00:49:38 +01:00
parent 7f476b3e2c
commit 4ae817cd82
4 changed files with 17 additions and 5 deletions

View File

@@ -129,6 +129,20 @@ status_bar_resize(void)
dirty = TRUE;
}
void
status_bar_set_all_inactive(void)
{
int i = 0;
for (i = 0; i < 12; i++) {
is_active[i] = FALSE;
is_new[i] = FALSE;
_mark_inactive(i);
}
g_hash_table_remove_all(remaining_active);
g_hash_table_remove_all(remaining_new);
}
void
status_bar_inactive(const int win)
{