Fix bug with changing vector map source
This commit is contained in:
parent
aa8b01b413
commit
de6f30abb8
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ public class SettingsActivity extends PreferenceActivity implements OnPreference
|
||||||
if(VECTOR_MAP.equals((String) newValue)){
|
if(VECTOR_MAP.equals((String) newValue)){
|
||||||
osmandSettings.setUsingMapVectorData(true);
|
osmandSettings.setUsingMapVectorData(true);
|
||||||
} else {
|
} else {
|
||||||
osmandSettings.setUsingMapVectorData(true);
|
osmandSettings.setUsingMapVectorData(false);
|
||||||
osmandSettings.setMapTileSource((String) newValue);
|
osmandSettings.setMapTileSource((String) newValue);
|
||||||
}
|
}
|
||||||
updateTileSourceSummary();
|
updateTileSourceSummary();
|
||||||
|
|
Loading…
Reference in a new issue