From: Jinoh Kang <jinoh.kang.kr(a)gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53891 --- dlls/user32/tests/msg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index cc28eceb0fb..baad938b6c7 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -9325,6 +9325,9 @@ static void subtest_swp_paint_regions_( int line, int wrap_toplevel, LPCSTR pare ok( hauxchild != 0, "Creating child window (%s) returned error %lu\n", debugstr_a( child_class ), GetLastError() ); + SetWindowPos( htoplevel ? htoplevel : hparent, NULL, 0, 0, 0, 0, + SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_SHOWWINDOW ); + for (i = 0; i < ARRAY_SIZE(exposure_tests); i++) { const struct exposure_test *extest = &exposure_tests[i]; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7080