Merge pull request #3522

c9ee4bf History: move cursor to end of search input field after importing address (rating89us)
This commit is contained in:
luigi1111 2021-06-10 10:18:59 -05:00
commit b07016b7cd
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -1794,6 +1794,8 @@ Rectangle {
function searchInHistory(searchTerm){
searchInput.text = searchTerm;
searchInput.forceActiveFocus();
searchInput.cursorPosition = searchInput.text.length;
sortAndFilter.collapsed = true;
}