Merge pull request #2515

c0fa4f5 SettingsLayout: pointing mouse cursor and selecting text (selsta)
This commit is contained in:
luigi1111 2019-12-03 22:21:51 -06:00
commit 6d7abaf5c0
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -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
}
}
}