forked from organicmaps/organicmaps
[ios] Fixed "no maps" display in downloader.
Added check for downloading countries.
This commit is contained in:
parent
6b77e885ae
commit
b20071e620
1 changed files with 2 additions and 2 deletions
|
@ -91,8 +91,8 @@ using namespace storage;
|
|||
auto const & s = GetFramework().Storage();
|
||||
if (![self.parentCountryId isEqualToString:@(s.GetRootId().c_str())])
|
||||
return;
|
||||
if (self.mode == mwm::DownloaderMode::Available || s.HaveDownloadedCountries() ||
|
||||
self.dataSource == self.searchDataSource)
|
||||
if (self.mode == mwm::DownloaderMode::Available || self.dataSource == self.searchDataSource ||
|
||||
s.HaveDownloadedCountries() || s.IsDownloadInProgress())
|
||||
{
|
||||
[self configAllMapsView];
|
||||
self.tableView.hidden = NO;
|
||||
|
|
Loading…
Add table
Reference in a new issue