Skip to content

Commit f8ac6d8

Browse files
committed
Make window frame thick in order to increase resize handle area outside frame
1 parent 608ed77 commit f8ac6d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libdeadcode/src/graphics/renderwindow.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class RenderWindow : RenderTarget
132132
{
133133
DWORD style = GetWindowLongA(info.info.win.window, GWL_STYLE);
134134
style = style | WS_BORDER | WS_GROUP;
135-
style = style & ~WS_THICKFRAME;
135+
//style = style & ~WS_THICKFRAME;
136136
style = style & ~WS_POPUP;
137137
SetWindowLongA(info.info.win.window, GWL_STYLE, style);
138138
}

0 commit comments

Comments
 (0)