We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d34e6 commit ad9dcedCopy full SHA for ad9dced
src/main/java/com/openfin/desktop/demo/LayoutFrame.java
@@ -166,10 +166,10 @@ public void run() {
166
if (hasFrame) {
167
frame.setResizable(true);
168
// style = style & ~User32.WS_CHILD;
169
- style = style | User32.WS_CAPTION | User32.WS_BORDER ;
+ style = style | User32.WS_CAPTION | User32.WS_BORDER | User32.WS_THICKFRAME;
170
} else {
171
frame.setResizable(false);
172
- style = style &~ User32.WS_CAPTION &~ User32.WS_BORDER;
+ style = style &~ User32.WS_CAPTION &~ User32.WS_BORDER &~ User32.WS_THICKFRAME;
173
// style = style | User32.WS_CHILD;
174
}
175
User32.INSTANCE.SetWindowLong(hWnd, User32.GWL_STYLE, style);
0 commit comments