Add option to expand search filters by default

This commit is contained in:
NerdNumber9
2018-03-15 16:57:16 -04:00
parent c48bebe0b2
commit 3e3c0a1f14
4 changed files with 22 additions and 3 deletions

View File

@@ -158,4 +158,6 @@ object PreferenceKeys {
const val eh_hl_refreshFrequency = "eh_nh_refresh_frequency"
const val eh_hl_lastRefresh = "eh_nh_last_refresh"
const val eh_expandFilters = "eh_expand_filters"
}

View File

@@ -230,4 +230,6 @@ class PreferencesHelper(val context: Context) {
fun eh_hl_lastRefresh() = rxPrefs.getLong(Keys.eh_hl_lastRefresh, 0L)
// <-- EH
fun eh_expandFilters() = rxPrefs.getBoolean(Keys.eh_expandFilters, false)
}