forked from organicmaps/organicmaps
Fixed Qt downloader interface
This commit is contained in:
parent
47495d15c2
commit
590ffa3252
1 changed files with 9 additions and 0 deletions
|
@ -181,6 +181,10 @@ namespace qt
|
|||
st.DeleteNode(countryId);
|
||||
break;
|
||||
|
||||
case NodeStatus::Applying:
|
||||
// Do nothing.
|
||||
break;
|
||||
|
||||
default:
|
||||
ASSERT(false, ("We shouldn't be here"));
|
||||
break;
|
||||
|
@ -261,6 +265,11 @@ namespace qt
|
|||
rowColor = COLOR_INPROGRESS;
|
||||
break;
|
||||
|
||||
case NodeStatus::Applying:
|
||||
statusString = tr("Applying ...");
|
||||
rowColor = COLOR_INPROGRESS;
|
||||
break;
|
||||
|
||||
case NodeStatus::InQueue:
|
||||
statusString = tr("Marked for download");
|
||||
rowColor = COLOR_INQUEUE;
|
||||
|
|
Loading…
Add table
Reference in a new issue