Fixed Qt downloader interface

This commit is contained in:
r.kuznetsov 2018-08-14 14:00:58 +03:00 committed by Arsentiy Milchakov
parent 47495d15c2
commit 590ffa3252

View file

@ -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;