Remove useless long-press-to-change-category setting as it is now enabled by default

This commit is contained in:
NerdNumber9 2019-07-27 19:03:35 -04:00
parent 275e20eabd
commit 2ea0538825
3 changed files with 0 additions and 10 deletions

View File

@ -167,8 +167,6 @@ object PreferenceKeys {
const val eh_expandFilters = "eh_expand_filters" 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_readerThreads = "eh_reader_threads"
const val eh_readerInstantRetry = "eh_reader_instant_retry" const val eh_readerInstantRetry = "eh_reader_instant_retry"

View File

@ -248,8 +248,6 @@ class PreferencesHelper(val context: Context) {
fun eh_incogWebview() = rxPrefs.getBoolean(Keys.eh_incogWebview, false) fun eh_incogWebview() = rxPrefs.getBoolean(Keys.eh_incogWebview, false)
fun eh_askCategoryOnLongPress() = rxPrefs.getBoolean(Keys.eh_askCategoryOnLongPress, false)
fun eh_autoSolveCaptchas() = rxPrefs.getBoolean(Keys.eh_autoSolveCaptchas, false) fun eh_autoSolveCaptchas() = rxPrefs.getBoolean(Keys.eh_autoSolveCaptchas, false)
fun eh_delegateSources() = rxPrefs.getBoolean(Keys.eh_delegateSources, true) fun eh_delegateSources() = rxPrefs.getBoolean(Keys.eh_delegateSources, true)

View File

@ -198,12 +198,6 @@ class SettingsGeneralController : SettingsController() {
} }
// --> EXH // --> EXH
switchPreference {
key = Keys.eh_askCategoryOnLongPress
title = "Long-press favorite button to specify category"
defaultValue = false
}
switchPreference { switchPreference {
key = Keys.eh_expandFilters key = Keys.eh_expandFilters
title = "Expand all search filters by default" title = "Expand all search filters by default"