Skip to content

Commit

Permalink
Qt: Enforce minimum progress dialog height
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Nov 10, 2024
1 parent 3a271ff commit 3874df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/duckstation-qt/qtprogresscallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ QtModalProgressCallback::QtModalProgressCallback(QWidget* parent_widget, float s
: QObject(parent_widget), m_dialog(QString(), QString(), 0, 1, parent_widget), m_show_delay(show_delay)
{
m_dialog.setWindowTitle(tr("DuckStation"));
m_dialog.setMinimumSize(QSize(500, 0));
m_dialog.setMinimumSize(QSize(500, 100));
m_dialog.setModal(parent_widget != nullptr);
m_dialog.setAutoClose(false);
m_dialog.setAutoReset(false);
Expand Down

0 comments on commit 3874df6

Please sign in to comment.