Fix
This commit is contained in:
parent
1dc39f3209
commit
1ac2e4b371
1 changed files with 5 additions and 1 deletions
|
@ -548,7 +548,11 @@ public class DownloadActivity extends ActionBarProgressActivity implements Downl
|
|||
}
|
||||
|
||||
public void setDownloadItem(WorldRegion region) {
|
||||
downloadItem = region;
|
||||
if(downloadItem == null) {
|
||||
downloadItem = region;
|
||||
} else if(region == null) {
|
||||
downloadItem = null;
|
||||
}
|
||||
}
|
||||
|
||||
private void showGoToMap(WorldRegion worldRegion) {
|
||||
|
|
Loading…
Reference in a new issue