summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-09-18 18:03:21 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-09-18 18:03:21 +0200
commitb317038a01094136d06d4cb769b7755450b94f61 (patch)
tree92aea4178d7835b4c2992bf7e5bad439df4ef688
parent5cd136649ae2599fef89d684c6a18391f29e1bc7 (diff)
downloadqutebrowser-b317038a01094136d06d4cb769b7755450b94f61.tar.gz
qutebrowser-b317038a01094136d06d4cb769b7755450b94f61.zip
eventfilter: Also enable workaround on wayland-egl
Will be fixed nicely on main, this is a more minimal fix
-rw-r--r--qutebrowser/keyinput/eventfilter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/keyinput/eventfilter.py b/qutebrowser/keyinput/eventfilter.py
index 306d4405b..ce9959bd4 100644
--- a/qutebrowser/keyinput/eventfilter.py
+++ b/qutebrowser/keyinput/eventfilter.py
@@ -86,7 +86,7 @@ class EventFilter(QObject):
if (
ev_type == QEvent.Type.DragEnter and
- objects.qapp.platformName() == "wayland" and
+ objects.qapp.platformName() in ["wayland", "wayland-egl"] and
qVersion() == "6.5.2"
):
# WORKAROUND for https://bugreports.qt.io/browse/QTBUG-115757