Aug. 4, 2026
7:35 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/syslink.c:
{ ok(sz.cx > 5, "Unexpected ideal width, %ld.\n", sz.cx); ok(sz.cy == ret, "Unexpected ideal height, %ld.\n", sz.cy); + ok(sz.cx > sz.cy, "Expected sz.cx > sz.cy (%ld > %ld).\n", sz.cx, sz.cy); }
Let's move the `MoveWindow(hwnd, 0, 0, 0, 0, FALSE)` here and check the size from LM_GETIDEALSIZE again. That would avoid changing the existing test for a control with a non-zero size. And let's add the test with a todo_wine first. Then remove the todo_wine in the second patch that fixes the bug. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11481#note_147794