Merge pull request #598 from Sir-Photch/await-search

Reduce flickering of highlighted best match while searching
This commit is contained in:
U. N. Owen 2023-10-28 16:53:00 +02:00 committed by GitHub
commit 8d81a57c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@ android {
}
packaging {
resources.excludes.add("META-INF/DEPENDENCIES")
//resources.excludes.add("META-INF/DEPENDENCIES")
resources.excludes.add("META-INF/LICENSE")
resources.excludes.add("META-INF/LICENSE.txt")
resources.excludes.add("META-INF/license.txt")
@ -168,4 +168,4 @@ dependencies {
// Uncomment this if you want annoying notifications in your debug builds yelling at you how terrible your code is
//debugImplementation(libs.leakcanary)
}
}

View File

@ -104,7 +104,9 @@ class SearchVM : ViewModel(), KoinComponent {
searchQuery.value = query
isSearchEmpty.value = query.isEmpty()
hiddenResults.value = emptyList()
bestMatch.value = null
if (isSearchEmpty.value)
bestMatch.value = null
try {
searchJob?.cancel()