Qt: Fix missing status message on delayed progress show

This commit is contained in:
Stenzek 2024-12-05 16:22:55 +10:00
parent e9644c7eeb
commit 58f5d7e1ba
No known key found for this signature in database
1 changed files with 1 additions and 3 deletions

View File

@ -47,9 +47,7 @@ void QtModalProgressCallback::SetStatusText(const std::string_view text)
{
ProgressCallback::SetStatusText(text);
checkForDelayedShow();
if (m_dialog.isVisible())
m_dialog.setLabelText(QtUtils::StringViewToQString(text));
m_dialog.setLabelText(QtUtils::StringViewToQString(text));
}
void QtModalProgressCallback::SetProgressRange(u32 range)