Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ac93753d07
2 changed files with 3 additions and 2 deletions
|
@ -67,6 +67,7 @@ public class SettingsDevelopmentActivity extends SettingsBaseActivity {
|
||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceClick(Preference preference) {
|
public boolean onPreferenceClick(Preference preference) {
|
||||||
getMyApplication().getAppInitializer().resetFirstTimeRun();
|
getMyApplication().getAppInitializer().resetFirstTimeRun();
|
||||||
|
getMyApplication().getSettings().FIRST_MAP_IS_DOWNLOADED.set(false);
|
||||||
getMyApplication().showToastMessage(R.string.shared_string_ok);
|
getMyApplication().showToastMessage(R.string.shared_string_ok);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -213,7 +213,7 @@ public class DownloadActivity extends ActionBarProgressActivity implements Downl
|
||||||
public void downloadHasFinished() {
|
public void downloadHasFinished() {
|
||||||
visibleBanner.updateBannerInProgress();
|
visibleBanner.updateBannerInProgress();
|
||||||
if(downloadItem != null && !WorldRegion.WORLD_BASEMAP.equals(downloadItem.getRegionDownloadNameLC())) {
|
if(downloadItem != null && !WorldRegion.WORLD_BASEMAP.equals(downloadItem.getRegionDownloadNameLC())) {
|
||||||
boolean firstMap = getMyApplication().getSettings().FIRST_MAP_IS_DOWNLOADED.get();
|
boolean firstMap = !getMyApplication().getSettings().FIRST_MAP_IS_DOWNLOADED.get();
|
||||||
if(firstMap) {
|
if(firstMap) {
|
||||||
initSettingsFirstMap(downloadItem);
|
initSettingsFirstMap(downloadItem);
|
||||||
}
|
}
|
||||||
|
@ -499,7 +499,7 @@ public class DownloadActivity extends ActionBarProgressActivity implements Downl
|
||||||
|
|
||||||
private void initSettingsFirstMap(WorldRegion reg) {
|
private void initSettingsFirstMap(WorldRegion reg) {
|
||||||
// TODO test set correctly (4 tests): when you download first Australia, Japan, Luxembourgh, US
|
// TODO test set correctly (4 tests): when you download first Australia, Japan, Luxembourgh, US
|
||||||
getMyApplication().getSettings().FIRST_MAP_IS_DOWNLOADED.set(false);
|
getMyApplication().getSettings().FIRST_MAP_IS_DOWNLOADED.set(true);
|
||||||
DrivingRegion drg = null;
|
DrivingRegion drg = null;
|
||||||
boolean americanSigns = "american".equals(reg.getRegionRoadSigns());
|
boolean americanSigns = "american".equals(reg.getRegionRoadSigns());
|
||||||
boolean leftHand = "yes".equals(reg.getRegionLeftHandDriving());
|
boolean leftHand = "yes".equals(reg.getRegionLeftHandDriving());
|
||||||
|
|
Loading…
Reference in a new issue