commit 01228feb3cbd7e8ade9f358cd595abb83ee4b87f
parent 3621081bbcaf2672ed023149cf1814f611309547
Author: cfillion <cfillion@users.noreply.github.com>
Date: Sat, 5 Dec 2015 23:12:27 -0800
remove the download URI from the progress dialog
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/progress.cpp b/src/progress.cpp
@@ -69,8 +69,8 @@ void Progress::updateProgress()
{
if(m_current) {
const string text = "Downloading " +
- to_string(min(m_done + 1, m_total)) + " of " + to_string(m_total) + ": " +
- m_current->name() + "\n" + m_current->url();
+ to_string(min(m_done + 1, m_total)) + " of " +
+ to_string(m_total) + ": " + m_current->name();
SetWindowText(m_label, text.c_str());
}
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -142,7 +142,6 @@ Transaction *ReaPack::createTransaction()
ShowMessageBox("Synchronization complete!", "ReaPack", 0);
m_progress->setEnabled(true);
-
m_progress->setTransaction(0);
m_progress->hide();