diff options
| author | selsta <selsta@sent.at> | 2019-07-03 13:54:01 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-07-03 13:54:01 +0200 |
| commit | 84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af (patch) | |
| tree | 0b1592c73dd0c55a0b74ff0b9347504b079fd5dc | |
| parent | c7956f76ead2c82a320c830a63ffa97d55a10bb6 (diff) | |
| download | monzero-gui-84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af.tar.gz monzero-gui-84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af.tar.xz monzero-gui-84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af.zip | |
History: allow to search for tx_note
| -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); } |
