feat(activity): added success state to copy tx hash option

This commit is contained in:
Dario Gabriel Lipicar 2024-11-17 17:34:32 -03:00
parent d93d51c93d
commit c47ea54581
No known key found for this signature in database
GPG Key ID: 9625E9494309D203
1 changed files with 2 additions and 1 deletions

View File

@ -16,9 +16,10 @@ StatusMenu {
icon.name: "link" icon.name: "link"
onTriggered: root.viewTxOnExplorerRequested() onTriggered: root.viewTxOnExplorerRequested()
} }
StatusAction { StatusSuccessAction {
objectName: "copyTxHashItem" objectName: "copyTxHashItem"
text: qsTr("Copy transaction hash") text: qsTr("Copy transaction hash")
successText: qsTr("Copied")
icon.name: "copy" icon.name: "copy"
onTriggered: root.copyTxHashRequested() onTriggered: root.copyTxHashRequested()
} }