Skip to content

Commit 4a45224

Browse files
committed
Format tweaks
1 parent b25c7a4 commit 4a45224

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/host/windows/window.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ namespace cycfi::elements
4343
void disable_minimize(HWND hwnd)
4444
{
4545
SetWindowLongW(hwnd, GWL_STYLE,
46-
GetWindowLongW(hwnd, GWL_STYLE) & ~WS_MINIMIZEBOX);
46+
GetWindowLongW(hwnd, GWL_STYLE) & ~WS_MINIMIZEBOX);
4747
SetWindowPos(hwnd, nullptr, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_FRAMECHANGED);
4848
}
4949

5050
[[maybe_unused]]
5151
void disable_maximize(HWND hwnd)
5252
{
5353
SetWindowLongW(hwnd, GWL_STYLE,
54-
GetWindowLongW(hwnd, GWL_STYLE) & ~WS_MAXIMIZEBOX);
54+
GetWindowLongW(hwnd, GWL_STYLE) & ~WS_MAXIMIZEBOX);
5555
SetWindowPos(hwnd, nullptr, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_FRAMECHANGED);
5656
}
5757

0 commit comments

Comments
 (0)