diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:35:29 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:35:29 -0500 |
| commit | 5b411b471e6fef507b074fe061c5424d02c6eb42 (patch) | |
| tree | 7bc2b3f52ebc5b932a7569d41100ab5d5b451c91 | |
| parent | 79dcb92d182908bf2caba6fc56cacf4548266871 (diff) | |
| parent | 84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af (diff) | |
| download | monzero-gui-5b411b471e6fef507b074fe061c5424d02c6eb42.tar.gz monzero-gui-5b411b471e6fef507b074fe061c5424d02c6eb42.tar.xz monzero-gui-5b411b471e6fef507b074fe061c5424d02c6eb42.zip | |
Merge pull request #2250
84865cd History: allow to search for tx_note (selsta)
| -rw-r--r-- | pages/History.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/History.qml b/pages/History.qml index 4ce053a7..c9a0d525 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1387,6 +1387,8 @@ Rectangle { txs.push(item); } else if(item.blockheight.toString().startsWith(root.sortSearchString)) { txs.push(item); + } else if(item.tx_note.toLowerCase().indexOf(root.sortSearchString.toLowerCase()) !== -1) { + txs.push(item); } else if (item.hash.startsWith(root.sortSearchString)){ txs.push(item); } |
