From 2a9885e7875f892615101445867015681f9ec576 Mon Sep 17 00:00:00 2001 From: Esme Povirk Date: Thu, 26 Jun 2025 23:05:23 +0000 Subject: [PATCH] xalia-fixups.gudl: Ignore winforms applications. CW-Bug-ID: #25607 --- xalia-fixups.gudl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xalia-fixups.gudl b/xalia-fixups.gudl index 624bbb7d..2923b0fd 100644 --- a/xalia-fixups.gudl +++ b/xalia-fixups.gudl @@ -7,3 +7,9 @@ if (is_hwnd_syslink) { if (win32_class_name == "Rockstar Games Launcher Installer") { application_supports_gamepad: true; } + +if (win32_class_name >= "WindowsForms10." and win32_class_name < "WindowsForms10/") { + // Controls that delegate IEnumVariant in winforms can crash in Wine Mono when queried, don't touch them for now. + recurse: false; + interactable: false; +}