aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-11-02 07:51:15 +0100
committerJaquee <jaquee.monero@gmail.com>2017-11-03 16:57:12 +0100
commit2170f6a46d42704f5fe1b0ff04bf7a9a5992804f (patch)
tree4e44336b8ee08d93c58f3d08eddbf9fe0411ca34 /wizard
parente6ada22611dcdb34dbba3298dc1597fd04e29590 (diff)
downloadmonzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.gz
monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.xz
monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.zip
Improve copy text handling
Diffstat (limited to 'wizard')
-rw-r--r--wizard/WizardMemoTextInput.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/wizard/WizardMemoTextInput.qml b/wizard/WizardMemoTextInput.qml
index c999f49c..d278508e 100644
--- a/wizard/WizardMemoTextInput.qml
+++ b/wizard/WizardMemoTextInput.qml
@@ -59,7 +59,11 @@ Column {
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
- onClicked: clipboard.setText(memoTextInput.text)
+ onClicked: {
+ clipboard.setText(memoTextInput.text)
+ appWindow.showStatusMessage(qsTr("Seed copied to clipboard"),3)
+ }
+
}
}
Rectangle {