Small fix - map region context menu
This commit is contained in:
parent
a14fd90eab
commit
cce6f72db8
1 changed files with 6 additions and 2 deletions
|
@ -127,8 +127,10 @@ public class MapDataMenuController extends MenuController {
|
|||
};
|
||||
|
||||
if (!downloadThread.getIndexes().isDownloadedFromInternet) {
|
||||
if (mapActivity.getMyApplication().getSettings().isInternetConnectionAvailable()) {
|
||||
downloadThread.runReloadIndexFiles();
|
||||
}
|
||||
}
|
||||
|
||||
updateData();
|
||||
}
|
||||
|
@ -255,8 +257,10 @@ public class MapDataMenuController extends MenuController {
|
|||
rightTitleButtonController.visible = indexItem != null && indexItem.isDownloaded();
|
||||
topRightTitleButtonController.visible = otherIndexItems.size() > 0;
|
||||
|
||||
boolean downloadIndexes = !downloadThread.getIndexes().isDownloadedFromInternet
|
||||
boolean downloadIndexes = getMapActivity().getMyApplication().getSettings().isInternetConnectionAvailable()
|
||||
&& !downloadThread.getIndexes().isDownloadedFromInternet
|
||||
&& !downloadThread.getIndexes().downloadFromInternetFailed;
|
||||
|
||||
boolean isDownloading = indexItem != null && downloadThread.isDownloading(indexItem);
|
||||
if (isDownloading) {
|
||||
titleProgressController.setMapDownloadMode();
|
||||
|
|
Loading…
Reference in a new issue