Transfer: disable long payment ids by default

This commit is contained in:
selsta
2018-12-27 19:12:40 +01:00
parent 48a267f631
commit bb37234142
4 changed files with 14 additions and 0 deletions

View File

@@ -78,6 +78,16 @@ Rectangle {
text: qsTr("Hide balance") + translationManager.emptyString
}
MoneroComponents.CheckBox {
visible: !isMobile
id: showPidCheckBox
checked: persistentSettings.showPid
onClicked: {
persistentSettings.showPid = !persistentSettings.showPid
}
text: qsTr("Enable transfer with payment ID (OBSOLETE)") + translationManager.emptyString
}
MoneroComponents.CheckBox {
visible: !isMobile
id: userInActivityCheckbox