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:
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowWin32.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_WindowWin32.cpp b/intern/ghost/intern/GHOST_WindowWin32.cpp
index e29505a5abf..a166fa490e2 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.cpp
+++ b/intern/ghost/intern/GHOST_WindowWin32.cpp
@@ -114,8 +114,10 @@ GHOST_WindowWin32::GHOST_WindowWin32(GHOST_SystemWin32 *system,
DWORD extended_style = parentwindow ? WS_EX_APPWINDOW : 0;
if (dialog) {
- style = WS_POPUPWINDOW | WS_CAPTION;
- extended_style = WS_EX_DLGMODALFRAME | WS_EX_TOPMOST;
+ /* When we are ready to make windows of this type:
+ * style = WS_POPUPWINDOW | WS_CAPTION
+ * extended_style = WS_EX_DLGMODALFRAME | WS_EX_TOPMOST
+ */
}
/* Monitor details. */