ignore non-visible windows too

This commit is contained in:
Dana Jansens 2003-09-22 05:38:44 +00:00
parent 74f36c587c
commit 27eb1a7736

View file

@ -194,7 +194,7 @@ typedef enum
} ObSmartType;
#define SMART_IGNORE(placer, c) \
(placer == c || c->shaded || !client_normal(c) || \
(placer == c || !c->visible || c->shaded || !client_normal(c) || \
(c->desktop != DESKTOP_ALL && \
c->desktop != (placer->desktop == DESKTOP_ALL ? \
screen_desktop : placer->desktop)))