diff options
-rw-r--r-- | pugl/pugl_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index dbe0649..5f85d12 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -97,7 +97,7 @@ puglCreate(PuglNativeWindow parent, impl->hwnd = CreateWindowEx( WS_EX_TOPMOST, classNameBuf, title, - (addToDesktop ? WS_VISIBLE : 0) | (parent ? WS_CHILD : winFlags), + (visible ? WS_VISIBLE : 0) | (parent ? WS_CHILD : winFlags), 0, 0, wr.right-wr.left, wr.bottom-wr.top, (HWND)parent, NULL, NULL, NULL); |