[android] solves issue of status change of "search history" button on… (#8087)

Signed-off-by: kavikhalique <kavikhalique3@gmail.com>
This commit is contained in:
kavi khalique 2024-05-07 03:30:02 +05:30 committed by GitHub
parent dce3dd35cd
commit d70ad8b894
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -258,7 +258,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
((TwoStatePreference) pref).setChecked(isHistoryEnabled);
pref.setOnPreferenceChangeListener((preference, newValue) -> {
boolean newVal = (Boolean) newValue;
if (newVal != isHistoryEnabled)
if (newVal != Config.isSearchHistoryEnabled())
{
Config.setSearchHistoryEnabled(newVal);
if (newVal)