aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrating89us <45968869+rating89us@users.noreply.github.com>2021-06-02 16:56:34 +0200
committerGitHub <noreply@github.com>2021-06-02 16:56:34 +0200
commitc9ee4bf2864b6645275c4b5019911237244e44e5 (patch)
tree6c6a5e2b2dadb37bd57832fe6a48a9a74228b215
parent2946127ed791ef8dd6dc430b681a14cd5bd2d71e (diff)
downloadmonzero-gui-c9ee4bf2864b6645275c4b5019911237244e44e5.tar.gz
monzero-gui-c9ee4bf2864b6645275c4b5019911237244e44e5.tar.xz
monzero-gui-c9ee4bf2864b6645275c4b5019911237244e44e5.zip
History: move cursor to end of search input field after importing address
-rw-r--r--pages/History.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/History.qml b/pages/History.qml
index 03d30c5e..90885214 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -1779,6 +1779,8 @@ Rectangle {
function searchInHistory(searchTerm){
searchInput.text = searchTerm;
+ searchInput.forceActiveFocus();
+ searchInput.cursorPosition = searchInput.text.length;
sortAndFilter.collapsed = true;
}