From 80da16e54a8595130f1f849923220f6671e6c1a7 Mon Sep 17 00:00:00 2001 From: Federico Guerinoni Date: Fri, 20 Jan 2023 23:37:25 +0100 Subject: [PATCH] Ladybird: Design settings layout in horizontal --- Ladybird/SettingsDialog.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Ladybird/SettingsDialog.cpp b/Ladybird/SettingsDialog.cpp index 0a9e01ac3b2c12..a9d231ad308299 100644 --- a/Ladybird/SettingsDialog.cpp +++ b/Ladybird/SettingsDialog.cpp @@ -18,8 +18,7 @@ SettingsDialog::SettingsDialog(QMainWindow* window) m_homepage = new QLineEdit(this); m_ok_button = new QPushButton("&Save", this); - m_layout->addWidget(new QLabel("Homepage", this)); - m_layout->addWidget(m_homepage); + m_layout->addRow(new QLabel("HomePage", this), m_homepage); m_layout->addWidget(m_ok_button); m_homepage->setText(s_settings->homepage());