[PATCH 0/1] MR6062: win32u: Fix initial value when checking whether WS_EX_LAYERED changes.
12 Jul
12 Jul
7:07 a.m.
New subject: [PATCH 1/1] win32u: Fix initial value when checking whether WS_EX_LAYERED changes.
From: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/win32u/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/win32u/window.c b/dlls/win32u/window.c index 83fa6d6e67c..3fa97d9a107 100644 --- a/dlls/win32u/window.c +++ b/dlls/win32u/window.c @@ -1202,7 +1202,7 @@ static HWND set_window_owner( HWND hwnd, HWND owner ) /* Helper function for SetWindowLong(). */ LONG_PTR set_window_long( HWND hwnd, INT offset, UINT size, LONG_PTR newval, BOOL ansi ) { - BOOL ok, made_visible = FALSE, layered = TRUE; + BOOL ok, made_visible = FALSE, layered = FALSE; LONG_PTR retval = 0; STYLESTRUCT style; WND *win; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6062
525
Age (days ago)
525
Last active (days ago)
1 comments
1 participants
participants (1)
-
Rémi Bernon