]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Settings: move split views options to their own group
authorMéven Car <meven.car@kdemail.net>
Sat, 18 Feb 2023 17:14:45 +0000 (18:14 +0100)
committerMéven Car <meven.car@kdemail.net>
Thu, 23 Feb 2023 14:44:20 +0000 (14:44 +0000)
src/settings/general/behaviorsettingspage.cpp

index 33f65b599beca7d330307d7549a52a7ca4fcb29d..67484ac19ff58e379c1c606c626a7f36c07fd5e7 100644 (file)
@@ -78,9 +78,12 @@ BehaviorSettingsPage::BehaviorSettingsPage(const QUrl &url, QWidget *parent)
     m_renameInline = new QCheckBox(i18nc("option:check", "Rename inline"));
     topLayout->addRow(QString(), m_renameInline);
 
+    // Splitted Views
+    topLayout->addItem(new QSpacerItem(0, Dolphin::VERTICAL_SPACER_HEIGHT, QSizePolicy::Fixed, QSizePolicy::Fixed));
+
     // 'Switch between panes of split views with tab key'
     m_useTabForSplitViewSwitch = new QCheckBox(i18nc("option:check", "Switch between split views panes with tab key"));
-    topLayout->addRow(QString(), m_useTabForSplitViewSwitch);
+    topLayout->addRow(i18nc("@title:group", "Split views: "), m_useTabForSplitViewSwitch);
 
     // 'Close active pane when turning off split view'
     m_closeActiveSplitView = new QCheckBox(i18nc("option:check", "Turning off split view closes active pane"));