mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00:00
Ladybird/Qt: Increase default size of the settings dialog
The current size is too small to be able to read the new tab URL. Use the `resize` API rather than setting a fixed-size as well, to allow the user to resize the dialog themselves.
This commit is contained in:
parent
f8f0c5459d
commit
63577e8d1c
1 changed files with 2 additions and 2 deletions
|
@ -56,9 +56,9 @@ SettingsDialog::SettingsDialog(QMainWindow* window)
|
|||
m_layout->addRow(new QLabel("Autocomplete Engine", this), m_autocomplete_engine_dropdown);
|
||||
|
||||
setWindowTitle("Settings");
|
||||
setFixedWidth(300);
|
||||
setFixedHeight(170);
|
||||
setLayout(m_layout);
|
||||
resize(600, 250);
|
||||
|
||||
show();
|
||||
setFocus();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue