mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
Revert "Bring back paymentID to tranfer page and force hide paymentId on a settings toggle (and reset fields on transfer page)"
This reverts commit 02493be6eb
.
This commit is contained in:
parent
ed760cfc82
commit
f91b38ff53
3 changed files with 2 additions and 3 deletions
2
main.qml
2
main.qml
|
@ -1054,7 +1054,7 @@ ApplicationWindow {
|
|||
property bool hideBalance: false
|
||||
property bool lockOnUserInActivity: true
|
||||
property int lockOnUserInActivityInterval: 10 // minutes
|
||||
property bool showPid: true
|
||||
property bool showPid: false
|
||||
}
|
||||
|
||||
// Information dialog
|
||||
|
|
|
@ -299,7 +299,7 @@ Rectangle {
|
|||
fontSize: paymentIdLine.labelFontSize
|
||||
iconOnTheLeft: false
|
||||
Layout.fillWidth: true
|
||||
text: qsTr("Payment ID <font size='2'>( Optional, deprecated )</font>") + translationManager.emptyString
|
||||
text: qsTr("Payment ID <font size='2'>( Optional )</font>") + translationManager.emptyString
|
||||
onClicked: {
|
||||
if (!paymentIdCheckbox.checked) {
|
||||
paymentIdLine.text = "";
|
||||
|
|
|
@ -84,7 +84,6 @@ Rectangle {
|
|||
checked: persistentSettings.showPid
|
||||
onClicked: {
|
||||
persistentSettings.showPid = !persistentSettings.showPid
|
||||
middlePanel.transferView.clearFields();
|
||||
}
|
||||
text: qsTr("Enable transfer with payment ID (OBSOLETE)") + translationManager.emptyString
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue