Allow preserving reading position even when manga is read

This commit is contained in:
NerdNumber9
2018-07-18 22:46:47 -04:00
parent 840e571917
commit 35239af039
6 changed files with 26 additions and 4 deletions

View File

@@ -176,4 +176,6 @@ object PreferenceKeys {
const val eh_utilAutoscrollInterval = "eh_util_autoscroll_interval"
const val eh_cacheSize = "eh_cache_size"
const val eh_preserveReadingPosition = "eh_preserve_reading_position"
}

View File

@@ -247,4 +247,6 @@ class PreferencesHelper(val context: Context) {
fun eh_utilAutoscrollInterval() = rxPrefs.getFloat(Keys.eh_utilAutoscrollInterval, 3f)
fun eh_cacheSize() = rxPrefs.getString(Keys.eh_cacheSize, "75")
fun eh_preserveReadingPosition() = rxPrefs.getBoolean(Keys.eh_preserveReadingPosition, false)
}