diff options
author | Danny Baumann <dannybaumann@web.de> | 2008-12-28 19:03:20 +0100 |
---|---|---|
committer | Danny Baumann <dannybaumann@web.de> | 2008-12-28 19:03:20 +0100 |
commit | 23a626a1d63d470c33eed5c787acd79dd3b14b7b (patch) | |
tree | f032d70733ea4f4a8519d949f11aa08de98d0378 | |
parent | 2198f056cce3f6426eee9b6be3f6ffc2bfd8f7c9 (diff) | |
download | put-23a626a1d63d470c33eed5c787acd79dd3b14b7b.tar.gz put-23a626a1d63d470c33eed5c787acd79dd3b14b7b.tar.bz2 |
Don't constrain fullscreen windows to work area.
-rw-r--r-- | put.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -615,7 +615,8 @@ putGetDistance (CompWindow *w, break; } - if ((dx || dy) && putGetAvoidOffscreen (s)) + if ((dx || dy) && putGetAvoidOffscreen (s) && + !(w->type & CompWindowTypeFullscreenMask)) { /* avoids window borders offscreen, but allow full viewport movements */ |