diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-11-02 07:51:15 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:57:12 +0100 |
| commit | 2170f6a46d42704f5fe1b0ff04bf7a9a5992804f (patch) | |
| tree | 4e44336b8ee08d93c58f3d08eddbf9fe0411ca34 /wizard/WizardMemoTextInput.qml | |
| parent | e6ada22611dcdb34dbba3298dc1597fd04e29590 (diff) | |
| download | monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.gz monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.xz monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.zip | |
Improve copy text handling
Diffstat (limited to 'wizard/WizardMemoTextInput.qml')
| -rw-r--r-- | wizard/WizardMemoTextInput.qml | 6 |
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 { |
