- m_splitView = new QCheckBox(i18nc("@option:check Startup Settings", "Split view mode"), vBox);
- vBoxLayout->addWidget(m_splitView);
- m_editableUrl = new QCheckBox(i18nc("@option:check Startup Settings", "Editable location bar"), vBox);
- vBoxLayout->addWidget(m_editableUrl);
- m_showFullPath = new QCheckBox(i18nc("@option:check Startup Settings", "Show full path inside location bar"), vBox);
- vBoxLayout->addWidget(m_showFullPath);
- m_filterBar = new QCheckBox(i18nc("@option:check Startup Settings", "Show filter bar"), vBox);
- vBoxLayout->addWidget(m_filterBar);
-
- // Add a dummy widget with no restriction regarding
- // a vertical resizing. This assures that the dialog layout
- // is not stretched vertically.
- new QWidget(vBox);
-
- topLayout->addWidget(vBox);
+ m_splitView = new QCheckBox(i18nc("@option:check Startup Settings", "Split view mode"));
+ topLayout->addRow(i18nc("@label:checkbox", "Window options:"), m_splitView);
+ m_editableUrl = new QCheckBox(i18nc("@option:check Startup Settings", "Editable location bar"));
+ topLayout->addRow(QString(), m_editableUrl);
+ m_showFullPath = new QCheckBox(i18nc("@option:check Startup Settings", "Show full path inside location bar"));
+ topLayout->addRow(QString(), m_showFullPath);
+ m_filterBar = new QCheckBox(i18nc("@option:check Startup Settings", "Show filter bar"));
+ topLayout->addRow(QString(), m_filterBar);
+ m_showFullPathInTitlebar = new QCheckBox(i18nc("@option:check Startup Settings", "Show full path in title bar"));
+ topLayout->addRow(QString(), m_showFullPathInTitlebar);
+