mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
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:
parent
6f42041837
commit
c12b0c5568
11 changed files with 51 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue