summaryrefslogtreecommitdiff
path: root/src/extern/wog.c
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-02-24 12:37:12 +0800
committerchai <chaifix@163.com>2020-02-24 12:37:12 +0800
commit87b9482459c1a27b8756514473ae392453db39ec (patch)
treeb47b5130f4a346adeaf26cde9787f43ab6949e57 /src/extern/wog.c
parent538cb1cd010a3323ad61239a12a4134ef4dceca6 (diff)
*window
Diffstat (limited to 'src/extern/wog.c')
-rw-r--r--src/extern/wog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extern/wog.c b/src/extern/wog.c
index 28d4dd1..04a84c7 100644
--- a/src/extern/wog.c
+++ b/src/extern/wog.c
@@ -352,7 +352,7 @@ wog_Window* wog_createWindow(const char* title, int width, int height, int x, in
windowStyle |= WS_CAPTION;
windowStyle |= WS_SYSMENU;
windowStyle |= WS_MINIMIZEBOX;
- windowStyle |= WS_VISIBLE;
+ //windowStyle |= WS_VISIBLE;
#define hasbit(fs, f) ((fs & f) == f)
if (hasbit(flags, WOG_RESIZABLE)) windowStyle |= WS_SIZEBOX;
if (hasbit(flags, WOG_DISABLE)) windowStyle |= WS_DISABLED;