Add ability to ask for category on long press

This commit is contained in:
NerdNumber9
2018-08-04 10:49:29 -04:00
parent 450fcccaa6
commit ec0fe2210d
5 changed files with 35 additions and 11 deletions

View File

@@ -169,6 +169,8 @@ object PreferenceKeys {
const val eh_expandFilters = "eh_expand_filters"
const val eh_askCategoryOnLongPress = "eh_ask_category_on_long_press"
const val eh_readerThreads = "eh_reader_threads"
const val eh_readerInstantRetry = "eh_reader_instant_retry"

View File

@@ -251,4 +251,6 @@ class PreferencesHelper(val context: Context) {
fun eh_preserveReadingPosition() = rxPrefs.getBoolean(Keys.eh_preserveReadingPosition, false)
fun eh_incogWebview() = rxPrefs.getBoolean(Keys.eh_incogWebview, false)
fun eh_askCategoryOnLongPress() = rxPrefs.getBoolean(Keys.eh_askCategoryOnLongPress, false)
}