28 May
2024
28 May
'24
9:14 p.m.
Rémi Bernon (@rbernon) commented about dlls/user32/tests/input.c:
ok_ne( NULL, hwnd, HWND, "%p" ); wait_messages( 100, FALSE );
+ /* If we have had a spurious layout change, wch(_shift) may be incorrect. */ + if (GetKeyboardLayout( 0 ) != hkl) + { + win_skip( "Spurious keyboard layout changed detected (expected: %p got: %p)\n", + hkl, GetKeyboardLayout( 0 ) ); + return;
You'll need to destroy the window here. Same below. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5652#note_70624