aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
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 {