From cc73a887aa2ff2e1c82e68cfc061f4bac998604a Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Sun, 28 Feb 2016 19:32:26 -0500 Subject: [PATCH] ecere/gui/Win32: Allow windows bigger than desktop - SWP_NOSENDCHANGING flag - This is required for slides generator with desktop smaller than size resolution --- ecere/src/gui/drivers/Win32Interface.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecere/src/gui/drivers/Win32Interface.ec b/ecere/src/gui/drivers/Win32Interface.ec index ab813ed..57ec580 100644 --- a/ecere/src/gui/drivers/Win32Interface.ec +++ b/ecere/src/gui/drivers/Win32Interface.ec @@ -1518,7 +1518,7 @@ class Win32Interface : Interface void PositionRootWindow(Window window, int x, int y, int w, int h, bool move, bool resize) { - int flags = SWP_NOZORDER|SWP_NOACTIVATE|SWP_NOCOPYBITS; + int flags = SWP_NOZORDER|SWP_NOACTIVATE|SWP_NOCOPYBITS|SWP_NOSENDCHANGING; if(!window.systemParent && !fullScreenMode) { -- 1.8.3.1