Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-10-21 01:58:19 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-10-21 01:58:19 +0400
commit122483518850f0d44d8e12a2f06c66ded878e894 (patch)
treed3fbcf2ecfae79358234c6da4e9636000dbff682 /intern
parent4044f057ca4b123721520e0dc20794a4eeb3b80a (diff)
Size and position are normally requested by program, not user.
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowX11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp
index 5e6bb93d9ba..3459f2fcc94 100644
--- a/intern/ghost/intern/GHOST_WindowX11.cpp
+++ b/intern/ghost/intern/GHOST_WindowX11.cpp
@@ -297,7 +297,7 @@ GHOST_WindowX11(
// 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;