From d87cbe63e5ff48cf161e35aab498451de9e0ea61 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Apr 2022 20:22:09 +0530 Subject: [PATCH] Qt 6 wayland needs yet another dll --- bypy/init_env.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bypy/init_env.py b/bypy/init_env.py index 12708243e9..65dc650234 100644 --- a/bypy/init_env.py +++ b/bypy/init_env.py @@ -44,7 +44,7 @@ dlls = [ ] if islinux: - dlls += ['XcbQpa', 'WaylandClient', 'DBus'] + dlls += ['XcbQpa', 'WaylandClient', 'WaylandEglClientHwIntegration', 'DBus'] elif ismacos: dlls += ['DBus'] @@ -66,6 +66,7 @@ QT_PLUGINS = [ if islinux: QT_PLUGINS += [ + 'egldeviceintegrations', 'platforminputcontexts', 'platformthemes', 'wayland-decoration-client',