Set default position of cursor at the end of query (#842)

This commit is contained in:
Andrei Shpakovskiy 2022-08-05 03:55:22 +03:00 committed by GitHub
parent 926e50090e
commit a18ae7d62e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -395,6 +395,7 @@ public class SearchActivity extends BaseActivity {
if (query != null) {
searchEditText.setText(query);
searchEditText.setSelection(query.length());
query = null;
}