diff options
author | Federico Guerinoni <guerinoni.federico@gmail.com> | 2023-01-20 23:37:25 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-02-03 05:10:51 -0700 |
commit | 80da16e54a8595130f1f849923220f6671e6c1a7 (patch) | |
tree | df8c4c3699d42c18c608249d79a64e70ad9040c0 | |
parent | 0f45153bbb5b0f0c8a4b9d891a0dce0537ee76c6 (diff) | |
download | serenity-80da16e54a8595130f1f849923220f6671e6c1a7.zip |
Ladybird: Design settings layout in horizontal
-rw-r--r-- | Ladybird/SettingsDialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Ladybird/SettingsDialog.cpp b/Ladybird/SettingsDialog.cpp index 0a9e01ac3b..a9d231ad30 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()); |