aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-04 03:28:52 -0400
committerGitHub <noreply@github.com>2017-07-04 03:28:52 -0400
commit7a13673828f088c179763e8621a94e334319f226 (patch)
tree4fb055ac8e180d7ce0eb4a9e3c88dc6230ff8187 /app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt
parentcaf3c4187706ba436fad5e3fa4fd1476a9a4e3ee (diff)
downloadfrost-7a13673828f088c179763e8621a94e334319f226.tar.gz
frost-7a13673828f088c179763e8621a94e334319f226.tar.bz2
frost-7a13673828f088c179763e8621a94e334319f226.zip
Misc fixes
* Remove experimental by default * Update theme * Update glide caching to reload with every version * Pause hidden searchview when not in use * Convert glide to glide app
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt
index 837df260..83dccb9a 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewSearch.kt
@@ -127,6 +127,7 @@ class FrostWebViewSearch(context: Context, val contract: SearchContract) : WebVi
when (flag) {
0 -> {
L.d("Search loaded successfully")
+ if (!contract.isSearchOpened) pauseLoad = true
}
1 -> { //something is not found in the search view; this is effectively useless
L.eThrow("Search subject error; reverting to full overlay")
@@ -147,6 +148,7 @@ class FrostWebViewSearch(context: Context, val contract: SearchContract) : WebVi
interface SearchContract {
fun searchOverlayDispose()
fun emitSearchResponse(items: List<SearchItem>)
+ val isSearchOpened: Boolean
}
}