[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24027] trunk/blender/intern/ghost/intern/ GHOST_WindowX11.cpp: Size and position are normally requested by program, not user.

gsr b3d gsr.b3d at infernal-iceberg.com
Tue Oct 20 23:58:19 CEST 2009


Revision: 24027
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24027
Author:   gsrb3d
Date:     2009-10-20 23:58:19 +0200 (Tue, 20 Oct 2009)

Log Message:
-----------
Size and position are normally requested by program, not user.

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_WindowX11.cpp

Modified: trunk/blender/intern/ghost/intern/GHOST_WindowX11.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_WindowX11.cpp	2009-10-20 21:13:42 UTC (rev 24026)
+++ trunk/blender/intern/ghost/intern/GHOST_WindowX11.cpp	2009-10-20 21:58:19 UTC (rev 24027)
@@ -297,7 +297,7 @@
 	// we want this window treated.
 
 	XSizeHints * xsizehints = XAllocSizeHints();
-	xsizehints->flags = USPosition | USSize | PMinSize;
+	xsizehints->flags = PPosition | PSize | PMinSize;
 	xsizehints->x = left;
 	xsizehints->y = top;
 	xsizehints->width = width;





More information about the Bf-blender-cvs mailing list