mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 19:32:03 +02:00
SettingsLayout: fix order
This commit is contained in:
parent
97cd215491
commit
c82bffeacc
@ -80,14 +80,6 @@ Rectangle {
|
|||||||
text: qsTr("Enable transfer with payment ID (OBSOLETE)") + translationManager.emptyString
|
text: qsTr("Enable transfer with payment ID (OBSOLETE)") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
|
|
||||||
MoneroComponents.CheckBox {
|
|
||||||
visible: !isMobile
|
|
||||||
id: userInActivityCheckbox
|
|
||||||
checked: persistentSettings.lockOnUserInActivity
|
|
||||||
onClicked: persistentSettings.lockOnUserInActivity = !persistentSettings.lockOnUserInActivity
|
|
||||||
text: qsTr("Lock wallet on inactivity") + translationManager.emptyString
|
|
||||||
}
|
|
||||||
|
|
||||||
MoneroComponents.CheckBox {
|
MoneroComponents.CheckBox {
|
||||||
id: themeCheckbox
|
id: themeCheckbox
|
||||||
checked: !MoneroComponents.Style.blackTheme
|
checked: !MoneroComponents.Style.blackTheme
|
||||||
@ -98,6 +90,14 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MoneroComponents.CheckBox {
|
||||||
|
visible: !isMobile
|
||||||
|
id: userInActivityCheckbox
|
||||||
|
checked: persistentSettings.lockOnUserInActivity
|
||||||
|
onClicked: persistentSettings.lockOnUserInActivity = !persistentSettings.lockOnUserInActivity
|
||||||
|
text: qsTr("Lock wallet on inactivity") + translationManager.emptyString
|
||||||
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
visible: userInActivityCheckbox.checked
|
visible: userInActivityCheckbox.checked
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
Loading…
Reference in New Issue
Block a user