Daniel Brötzmann pushed to branch master at gajim / gajim
Commits: 5482b62e by wurstsalat at 2025-07-13T15:00:43+02:00 fix: Disable accesskit on Windows to prevent segfaults Fixes #12364 See https://github.com/msys2/MINGW-packages/issues/24812 - - - - - 1 changed file: - gajim/main.py Changes: ===================================== gajim/main.py ===================================== @@ -130,6 +130,10 @@ def _set_env_vars() -> None: if sys.platform != "win32": return + # Disable accesskit due to segfaults when calling app.window.set_visible(True) + # https://github.com/msys2/MINGW-packages/issues/24812 + os.environ["GTK_A11Y"] = "none" + if "GTK_CSD" in os.environ: # Respect user settings return View it on GitLab: https://dev.gajim.org/gajim/gajim/-/commit/5482b62e2e7630f8e4f527c61f33521551be8a73 -- View it on GitLab: https://dev.gajim.org/gajim/gajim/-/commit/5482b62e2e7630f8e4f527c61f33521551be8a73 You're receiving this email because of your account on dev.gajim.org.
_______________________________________________ Commits mailing list -- [email protected] To unsubscribe send an email to [email protected]
