mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
parent
fb2664b54a
commit
5804e63559
1 changed files with 6 additions and 1 deletions
|
@ -1672,7 +1672,12 @@ void MainWindow::applySettingsChanges()
|
|||
}
|
||||
|
||||
m_ui->toolBar->setHidden(config()->get(Config::GUI_HideToolbar).toBool());
|
||||
m_ui->toolBar->setMovable(config()->get(Config::GUI_MovableToolbar).toBool());
|
||||
auto movable = config()->get(Config::GUI_MovableToolbar).toBool();
|
||||
m_ui->toolBar->setMovable(movable);
|
||||
if (!movable) {
|
||||
// Move the toolbar back to the top of the main window
|
||||
addToolBar(Qt::TopToolBarArea, m_ui->toolBar);
|
||||
}
|
||||
|
||||
bool isOk = false;
|
||||
const auto toolButtonStyle =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue