From f3ece7c9aaada43876cb424132b7f56259033a9a Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Thu, 20 Feb 2014 13:03:34 -0500 Subject: [PATCH] ecere/gui/drivers/XInterface: Avoiding forced re-positioning on ConfigureNotify - ConfigureNotify are sent for stacking re-ordering as well --- ecere/src/gui/drivers/XInterface.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecere/src/gui/drivers/XInterface.ec b/ecere/src/gui/drivers/XInterface.ec index 1820ad3..e03890d 100644 --- a/ecere/src/gui/drivers/XInterface.ec +++ b/ecere/src/gui/drivers/XInterface.ec @@ -2170,7 +2170,7 @@ class XInterface : Interface } } - window.Position(x, y, w, h, true, true, true, true, false, unmaximized); + window.Position(x, y, w, h, false /*true*/, true, true, true, false, unmaximized); // Break the anchors for moveable/resizable windows // Avoid doing this if the translation wasn't in sync as it will cause the window to move around -- 1.8.3.1