summaryrefslogtreecommitdiffstats
path: root/src/compositor/compositor_api/qwaylandseat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/compositor_api/qwaylandseat.cpp')
-rw-r--r--src/compositor/compositor_api/qwaylandseat.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/compositor/compositor_api/qwaylandseat.cpp b/src/compositor/compositor_api/qwaylandseat.cpp
index 80b75d617..b4b45392c 100644
--- a/src/compositor/compositor_api/qwaylandseat.cpp
+++ b/src/compositor/compositor_api/qwaylandseat.cpp
@@ -456,6 +456,12 @@ void QWaylandSeat::setMouseFocus(QWaylandView *view)
QWaylandView *oldFocus = d->mouseFocus;
d->mouseFocus = view;
+
+ if (oldFocus)
+ disconnect(oldFocus, &QObject::destroyed, this, &QWaylandSeat::handleMouseFocusDestroyed);
+ if (d->mouseFocus)
+ connect(d->mouseFocus, &QObject::destroyed, this, &QWaylandSeat::handleMouseFocusDestroyed);
+
emit mouseFocusChanged(d->mouseFocus, oldFocus);
}
@@ -512,4 +518,15 @@ QWaylandSeat *QWaylandSeat::fromSeatResource(struct ::wl_resource *resource)
* This signal is emitted when the mouse focus has changed from \a oldFocus to \a newFocus.
*/
+void QWaylandSeat::handleMouseFocusDestroyed()
+{
+ // This is triggered when the QWaylandView is destroyed, NOT the surface.
+ // ... so this is for the rare case when the view that currently holds the mouse focus is
+ // destroyed before its surface
+ Q_D(QWaylandSeat);
+ d->mouseFocus = nullptr;
+ QWaylandView *oldFocus = nullptr; // we have to send nullptr because the old focus is already destroyed at this point
+ emit mouseFocusChanged(d->mouseFocus, oldFocus);
+}
+
QT_END_NAMESPACE