Skip to content

Commit

Permalink
Fixed Qt downloader interface
Browse files Browse the repository at this point in the history
  • Loading branch information
r.kuznetsov authored and Arsentiy Milchakov committed Aug 14, 2018
1 parent 47495d1 commit 590ffa3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions qt/update_dialog.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 590ffa3

Please sign in to comment.