From c0fa4f5d27add0cdd5f9ce17554b43c71581ed9e Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 27 Nov 2019 18:49:18 +0100 Subject: [PATCH] SettingsLayout: pointing mouse cursor and selecting text --- pages/settings/SettingsLayout.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pages/settings/SettingsLayout.qml b/pages/settings/SettingsLayout.qml index 185b7533..f2606a7e 100644 --- a/pages/settings/SettingsLayout.qml +++ b/pages/settings/SettingsLayout.qml @@ -93,7 +93,8 @@ Rectangle { Layout.leftMargin: 42 spacing: 0 - MoneroComponents.TextBlock { + Text { + color: MoneroComponents.Style.defaultFontColor font.pixelSize: 14 Layout.fillWidth: true text: { @@ -142,6 +143,12 @@ Rectangle { } onMoved: persistentSettings.lockOnUserInActivityInterval = userInactivitySlider.value; + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + } } }