From 63577e8d1cb9cb1908c77b4749eab9ab753e37c0 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 20 Oct 2023 09:40:11 -0400 Subject: [PATCH] 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. --- Ladybird/Qt/SettingsDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ladybird/Qt/SettingsDialog.cpp b/Ladybird/Qt/SettingsDialog.cpp index 342876360e..e7a09d1af6 100644 --- a/Ladybird/Qt/SettingsDialog.cpp +++ b/Ladybird/Qt/SettingsDialog.cpp @@ -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(); }