From 2a6cd5010a13a5e42117348d2c6707d0bdf51362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 17 Oct 2014 09:53:42 +0200 Subject: [PATCH] Set a default cursor when creating the WaylandCursor --- wayland_backend.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wayland_backend.cpp b/wayland_backend.cpp index 18294b40ac..a8baf6b292 100644 --- a/wayland_backend.cpp +++ b/wayland_backend.cpp @@ -383,6 +383,9 @@ WaylandCursor::WaylandCursor(Surface *parentSurface, WaylandBackend *backend) parent->commit(Surface::CommitFlag::None); } ); + + // install a default cursor image: + setCursorImage(Qt::ArrowCursor); } void WaylandCursor::setHotSpot(const QPoint &pos)