From a8f9e2e919b656f9ee72ce5832230963f2ee72fa Mon Sep 17 00:00:00 2001 From: Rob Adams Date: Fri, 2 May 2003 07:32:02 +0000 Subject: Don't apply onscreen constraints to full screen windows. Fix for #110048 2003-05-01 Rob Adams * src/constraints.c (constraint_onscreen_applies_func): Don't apply onscreen constraints to full screen windows. Fix for #110048 --- ChangeLog | 6 ++++++ src/constraints.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 16c4ee4e..e6a75227 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-05-01 Rob Adams + + * src/constraints.c (constraint_onscreen_applies_func): Don't + apply onscreen constraints to full screen windows. Fix for + #110048 + 2003-04-29 Havoc Pennington * src/bell.h: include Xlib.h before XKBlib.h which is required on diff --git a/src/constraints.c b/src/constraints.c index a4b2c8a9..7913a8c1 100644 --- a/src/constraints.c +++ b/src/constraints.c @@ -338,6 +338,7 @@ static gboolean constraint_onscreen_applies_func (MetaWindow *window) { return + !window->fullscreen && window->type != META_WINDOW_DESKTOP && window->type != META_WINDOW_DOCK; } -- cgit v1.2.1