fixed typo

This commit is contained in:
Anselm R. Garbe 2006-04-26 19:03:04 +02:00
parent 076f943a6e
commit 0e1d040470
1 changed files with 1 additions and 2 deletions

View File

@ -388,8 +388,7 @@ update_views()
Bool only_wildcards = True;
for(j = 0; j < client.size; j++) {
Client *c = client.data[i];
if(is_view_of(client.data[j], view.data[i]))
if(!strchr(c->tags, '*'))
if(is_view_of(c, view.data[i]) && !strchr(c->tags, '*'))
only_wildcards = False;
}
if(only_wildcards && view.size > 1) {