Improve related splitter UX

* Prevent group pane from being hidden just by dragging. Introduce new View menu setting to hide the group pane.
* Replace the preview panel "close" icon with a "collapse down" icon making the intention clearer.
* Better organize the view menu
This commit is contained in:
Jonathan White 2024-12-21 23:25:45 -05:00
parent 6f42041837
commit c12b0c5568
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
11 changed files with 51 additions and 3 deletions

View file

@ -2006,6 +2006,11 @@ void MainWindow::initViewMenu()
applySettingsChanges();
});
m_ui->actionShowGroupPanel->setChecked(!config()->get(Config::GUI_HideGroupPanel).toBool());
connect(m_ui->actionShowGroupPanel, &QAction::toggled, this, [](bool checked) {
config()->set(Config::GUI_HideGroupPanel, !checked);
});
m_ui->actionShowPreviewPanel->setChecked(!config()->get(Config::GUI_HidePreviewPanel).toBool());
connect(m_ui->actionShowPreviewPanel, &QAction::toggled, this, [](bool checked) {
config()->set(Config::GUI_HidePreviewPanel, !checked);