commit ca0477d9e93e16d37b224bbcddcd4bb7db167f43
parent a03b411eb0fce05c79e7369b1f0130f542eead85
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 7 Mar 2016 03:13:51 -0500
don't show a blank progress dialog when reusing a transaction with no downloads
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -381,7 +381,7 @@ void ReaPack::loadIndex(const Remote &remote,
Transaction *ReaPack::createTransaction()
{
- if(m_progress)
+ if(m_progress && m_progress->isVisible())
m_progress->setFocus();
if(m_transaction)