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
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-21 15:15:57 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-21 15:15:57 +0400
commitb9d17f97eb2919e94b4db58d5fa06f7f6299865a (patch)
treeaee8ff0b71133f3fa630ac4a999a0721d1a32aac
parent76a0de3a0d80421b805a3f36a11d5d49089c62d2 (diff)
Don't use CS_CLASSDC after all. Makes drawing multiple windows funky.
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index cf6a5f8dc9e..da333ce4f08 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -356,7 +356,7 @@ GHOST_TSuccess GHOST_SystemWin32::init()
if (success) {
WNDCLASS wc;
- wc.style= CS_HREDRAW | CS_VREDRAW | CS_CLASSDC;
+ wc.style= CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc= s_wndProc;
wc.cbClsExtra= 0;
wc.cbWndExtra= 0;