aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-07-03 13:54:01 +0200
committerselsta <selsta@sent.at>2019-07-03 13:54:01 +0200
commit84865cdead8b8bdfe0ff6dfb4f7b5ac679eb59af (patch)
tree0b1592c73dd0c55a0b74ff0b9347504b079fd5dc
parentc7956f76ead2c82a320c830a63ffa97d55a10bb6 (diff)
downloadmonzero-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.qml2
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);
}