forked from Public/monero-gui
Avoid logging addresses and other sensitive data
This commit is contained in:
committed by
moneromooo-monero
parent
b35d60db2d
commit
9afaa7cf0f
@@ -119,9 +119,9 @@ Item {
|
||||
anchors.right: parent.right
|
||||
onClicked: {
|
||||
if (input.text.length > 0) {
|
||||
console.log(input.text + " copied to clipboard")
|
||||
clipboard.setText(input.text)
|
||||
appWindow.showStatusMessage(qsTr("Copied to clipboard"),3)
|
||||
console.log("Copied to clipboard");
|
||||
clipboard.setText(input.text);
|
||||
appWindow.showStatusMessage(qsTr("Copied to clipboard"), 3);
|
||||
}
|
||||
}
|
||||
visible: copyButton && input.text !== ""
|
||||
|
||||
Reference in New Issue
Block a user