mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-26 15:59:50 -05:00
parent
286b5cf9a4
commit
c041f45138
@ -1672,7 +1672,12 @@ void MainWindow::applySettingsChanges()
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_ui->toolBar->setHidden(config()->get(Config::GUI_HideToolbar).toBool());
|
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;
|
bool isOk = false;
|
||||||
const auto toolButtonStyle =
|
const auto toolButtonStyle =
|
||||||
|
Loading…
Reference in New Issue
Block a user