diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-08-27 14:58:33 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-27 14:58:33 -0500 |
| commit | 346e942e93e556a44b854061d37e64324a6d5a38 (patch) | |
| tree | 7b4640fd85cd03081484a5122f9c3ce6d82dce0f /pages | |
| parent | 13a5be73063dd6117ac23f9760ca07907ed84187 (diff) | |
| parent | 29580de2c747aae3be3031aa7d0e2498eb9bcf0c (diff) | |
| download | monzero-gui-346e942e93e556a44b854061d37e64324a6d5a38.tar.gz monzero-gui-346e942e93e556a44b854061d37e64324a6d5a38.tar.xz monzero-gui-346e942e93e556a44b854061d37e64324a6d5a38.zip | |
Merge pull request #2360
29580de History: fix tx key 'click to reveal' handling (xiphon)
Diffstat (limited to 'pages')
| -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){ |
