summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVlad Zahorodnii <vlad.zahorodnii@kde.org>2024-02-02 13:59:00 +0200
committerVlad Zahorodnii <vlad.zahorodnii@kde.org>2024-02-06 15:15:22 +0200
commita7c0c33f0d686d5d85bb910a192e0bf17aba7f61 (patch)
tree19cf34de99a7a7399998019b2faa90d25067e2d6 /src
parente2c87e22701a261d8415e6f7a15a14d2ae3c03a5 (diff)
Client: Map Qt::BusyCursor and Qt::WaitCursor to correct shape names
This amends b1cae06cb65658dcddf01a596ea95cfd7c0ebdc2. They are mapped vice versa. The wait cursor displays only an hourglass, while the busy cursor usually displays an arrow and an hourglass. Pick-to: 6.7 6.6 Change-Id: I449086f71b00993c061e8a56983c77925246dc37 Reviewed-by: David Edmundson <davidedmundson@kde.org>
Diffstat (limited to 'src')
-rw-r--r--src/client/qwaylandcursor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/qwaylandcursor.cpp b/src/client/qwaylandcursor.cpp
index e7464ed8f..98d51a842 100644
--- a/src/client/qwaylandcursor.cpp
+++ b/src/client/qwaylandcursor.cpp
@@ -247,11 +247,11 @@ static QtWayland::wp_cursor_shape_device_v1::shape qtCursorShapeToWaylandShape(Q
case Qt::SizeFDiagCursor:
return wp_cursor_shape_device_v1::shape_nwse_resize;
case Qt::WaitCursor:
- return wp_cursor_shape_device_v1::shape_progress;
+ return wp_cursor_shape_device_v1::shape_wait;
case Qt::SizeAllCursor:
return wp_cursor_shape_device_v1::shape_all_scroll;
case Qt::BusyCursor:
- return wp_cursor_shape_device_v1::shape_wait;
+ return wp_cursor_shape_device_v1::shape_progress;
case Qt::SplitVCursor:
return wp_cursor_shape_device_v1::shape_row_resize;
case Qt::ForbiddenCursor: