When /SET autoclose_windows is ON, don't destroy windows if they have

some level set (like /join -w + /part in status window)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1327 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-03 22:03:00 +00:00 committed by cras
commit 1a61f989e1
4 changed files with 13 additions and 8 deletions

View file

@ -83,9 +83,8 @@ static void signal_query_destroyed(QUERY_REC *query)
if (window != NULL) {
window_item_destroy((WI_ITEM_REC *) query);
if (window->items == NULL && windows->next != NULL &&
!query->unwanted && settings_get_bool("autoclose_windows"))
window_destroy(window);
if (!query->unwanted)
window_auto_destroy(window);
}
}