From ee72b7b8502276957f9d37ccb4ed5de94ebab926 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 18 Dec 2021 14:11:52 +0530 Subject: [PATCH] No plaformthemes plugins on macOS in Qt 6 --- bypy/init_env.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bypy/init_env.py b/bypy/init_env.py index e31a589e04..ca19c6300a 100644 --- a/bypy/init_env.py +++ b/bypy/init_env.py @@ -74,6 +74,8 @@ if islinux: ] else: QT_PLUGINS.append('styles') +if ismacos: + QT_PLUGINS.remove('platformthemes') PYQT_MODULES = ( 'Qt',