Skip to content
Permalink
Browse files
Merge pull request #8945 from JosJuice/qtbug-10561-again
DolphinQt: Attempt to fix ParallelProgressDialog constantly reopening
  • Loading branch information
Tilka committed Jul 11, 2020
2 parents 5281efe + 9c7704c commit 5286fb2
Showing 1 changed file with 5 additions and 1 deletion.
@@ -71,8 +71,12 @@ private slots:

m_is_setting_value = true;

while (m_last_received_progress != m_dialog.value())
int last_set_progress;
do
{
last_set_progress = m_last_received_progress;
m_dialog.setValue(m_last_received_progress);
} while (m_last_received_progress != last_set_progress);

m_is_setting_value = false;
}

0 comments on commit 5286fb2

Please sign in to comment.