From a472c903271056f81e46dc5fb0747e2065e022ad Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Fri, 2 Feb 2024 15:30:16 +0200 Subject: [PATCH] Prefer up-arrow cursor shape That's what breeze only has. --- src/cursor.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/cursor.cpp b/src/cursor.cpp index 8eeaabf0d4..74081489c8 100644 --- a/src/cursor.cpp +++ b/src/cursor.cpp @@ -351,10 +351,11 @@ QList Cursor::cursorAlternativeNames(const QByteArray &name) }, }, { - QByteArrayLiteral("up_arrow"), + QByteArrayLiteral("up-arrow"), { - QByteArrayLiteral("center_ptr"), + QByteArrayLiteral("up_arrow"), QByteArrayLiteral("sb_up_arrow"), + QByteArrayLiteral("center_ptr"), QByteArrayLiteral("centre_ptr"), }, }, @@ -634,7 +635,7 @@ QByteArray CursorShape::name() const case Qt::ArrowCursor: return QByteArrayLiteral("default"); case Qt::UpArrowCursor: - return QByteArrayLiteral("up_arrow"); + return QByteArrayLiteral("up-arrow"); case Qt::CrossCursor: return QByteArrayLiteral("crosshair"); case Qt::WaitCursor: