Skip to content

Commit dc24628

Browse files
authored
Fix WSMaximizeBox constant according to Win32 API (#61)
https://learn.microsoft.com/en-us/windows/win32/winmsg/window-styles
1 parent e2a104b commit dc24628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/w32/w32.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const (
106106

107107
const (
108108
WSOverlapped = 0x00000000
109-
WSMaximizeBox = 0x00020000
109+
WSMaximizeBox = 0x00010000
110110
WSThickFrame = 0x00040000
111111
WSCaption = 0x00C00000
112112
WSSysMenu = 0x00080000

0 commit comments

Comments
 (0)