diff options
| author | xiphon <xiphon@protonmail.com> | 2019-08-26 04:05:35 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2019-08-26 04:05:35 +0000 |
| commit | 29580de2c747aae3be3031aa7d0e2498eb9bcf0c (patch) | |
| tree | 2a3d73be581a09ed10474ed6c0b6da4d7f21141f | |
| parent | 562c46660acda12c2818b9edaffd6c3f841b2113 (diff) | |
| download | monzero-gui-29580de2c747aae3be3031aa7d0e2498eb9bcf0c.tar.gz monzero-gui-29580de2c747aae3be3031aa7d0e2498eb9bcf0c.tar.xz monzero-gui-29580de2c747aae3be3031aa7d0e2498eb9bcf0c.zip | |
History: fix tx key 'click to reveal' handling
| -rw-r--r-- | pages/History.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/History.qml b/pages/History.qml index 4a1d9515..92c493bc 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1583,9 +1583,9 @@ Rectangle { elem.parent.text = txKey ? txKey : '-'; elem.parent.state = 'ready'; }); + } else { + toClipboard(elem.parent.text); } - - toClipboard(elem.parent.text); } function showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex){ |
