mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-08 04:25:37 +00:00
Qt: Enforce minimum progress dialog height
This commit is contained in:
parent
3a271ffe9b
commit
3874df6888
@ -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)
|
: QObject(parent_widget), m_dialog(QString(), QString(), 0, 1, parent_widget), m_show_delay(show_delay)
|
||||||
{
|
{
|
||||||
m_dialog.setWindowTitle(tr("DuckStation"));
|
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.setModal(parent_widget != nullptr);
|
||||||
m_dialog.setAutoClose(false);
|
m_dialog.setAutoClose(false);
|
||||||
m_dialog.setAutoReset(false);
|
m_dialog.setAutoReset(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user