Skip to content

Commit b3b1be4

Browse files
Merge pull request #32 from lesleyrs/main
fix(windows): don't show dummy window on start
2 parents d06fe42 + 449c341 commit b3b1be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RGFW.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5298,7 +5298,7 @@ RGFW_UNUSED(win); /*!< if buffer rendering is not being used */
52985298
RECT windowRect, clientRect;
52995299

53005300
if (!(args & RGFW_NO_BORDER)) {
5301-
window_style |= WS_CAPTION | WS_SYSMENU | WS_BORDER | WS_VISIBLE | WS_MINIMIZEBOX;
5301+
window_style |= WS_CAPTION | WS_SYSMENU | WS_BORDER | WS_MINIMIZEBOX;
53025302

53035303
if (!(args & RGFW_NO_RESIZE))
53045304
window_style |= WS_SIZEBOX | WS_MAXIMIZEBOX | WS_THICKFRAME;

0 commit comments

Comments
 (0)