Skip to content

Commit

Permalink
Qt: Fix missing status message on delayed progress show
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Dec 5, 2024
1 parent e9644c7 commit 58f5d7e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/duckstation-qt/qtprogresscallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 58f5d7e

Please sign in to comment.