Fix excess divider in drawer prefs

This commit is contained in:
Suphon Thanakornpakapong
2021-10-09 11:29:19 +07:00
parent 3278700c2b
commit a8205e6bd2
@@ -61,7 +61,8 @@ fun AppDrawerPreferences() {
PreferenceGroup(heading = stringResource(id = R.string.pref_category_search)) {
SwitchPreference(
adapter = prefs.searchAutoShowKeyboard.getAdapter(),
label = stringResource(id = R.string.pref_search_auto_show_keyboard)
label = stringResource(id = R.string.pref_search_auto_show_keyboard),
showDivider = false
)
SwitchPreference(
adapter = prefs.useFuzzySearch.getAdapter(),