Allow choosing hitomi.la thumbnail quality

This commit is contained in:
NerdNumber9
2019-04-19 03:16:09 -04:00
parent 2a60c828d7
commit f6a8b23498
4 changed files with 19 additions and 4 deletions

View File

@@ -194,4 +194,6 @@ object PreferenceKeys {
const val eh_autoUpdateStats = "eh_auto_update_stats"
const val eh_aggressivePageLoading = "eh_aggressive_page_loading"
const val eh_hl_useHighQualityThumbs = "eh_hl_hq_thumbs"
}

View File

@@ -267,4 +267,6 @@ class PreferencesHelper(val context: Context) {
fun eh_autoUpdateStats() = rxPrefs.getString(Keys.eh_autoUpdateStats, "")
fun eh_aggressivePageLoading() = rxPrefs.getBoolean(Keys.eh_aggressivePageLoading, false)
fun eh_hl_useHighQualityThumbs() = rxPrefs.getBoolean(Keys.eh_hl_useHighQualityThumbs, false)
}