Default to X11 on Qt6 builds as well

Qt6 no longer appears to require QT_QPA_PLATFORM to be set.

https://forums.ankiweb.net/t/blury-interface-with-gnome-wayland-and-fractional-scaling/19196/4
This commit is contained in:
Damien Elmes 2022-04-20 14:41:01 +10:00
parent cf78a555c6
commit 7115caab13

View file

@ -495,7 +495,7 @@ def _run(argv: Optional[list[str]] = None, exec: bool = True) -> Optional[AnkiAp
if (
getattr(sys, "frozen", False)
and os.getenv("QT_QPA_PLATFORM") == "wayland"
or (os.getenv("QT_QPA_PLATFORM") == "wayland" or os.getenv("WAYLAND_DISPLAY"))
and not os.getenv("ANKI_WAYLAND")
):
# users need to opt in to wayland support, given the issues it has