forked from organicmaps/organicmaps
[android] solves issue of status change of "search history" button on… (#8087)
Signed-off-by: kavikhalique <kavikhalique3@gmail.com>
This commit is contained in:
parent
dce3dd35cd
commit
d70ad8b894
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue