mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-09 08:09:37 -04:00
parent
316a7e6fb7
commit
e98c30f633
2 changed files with 10 additions and 0 deletions
|
@ -599,6 +599,11 @@ void MainWindow::lockDatabasesAfterInactivity()
|
|||
|
||||
bool MainWindow::isTrayIconEnabled() const
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
// systray not useful on OS X
|
||||
return false;
|
||||
#else
|
||||
return config()->get("GUI/ShowTrayIcon").toBool()
|
||||
&& QSystemTrayIcon::isSystemTrayAvailable();
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -41,6 +41,11 @@ SettingsWidget::SettingsWidget(QWidget* parent)
|
|||
|
||||
m_generalUi->autoTypeShortcutWidget->setVisible(autoType()->isAvailable());
|
||||
m_generalUi->autoTypeShortcutLabel->setVisible(autoType()->isAvailable());
|
||||
#ifdef Q_OS_MAC
|
||||
// systray not useful on OS X
|
||||
m_generalUi->systrayShowCheckBox->setVisible(false);
|
||||
m_generalUi->systrayMinimizeToTrayCheckBox->setVisible(false);
|
||||
#endif
|
||||
|
||||
connect(this, SIGNAL(accepted()), SLOT(saveSettings()));
|
||||
connect(this, SIGNAL(rejected()), SLOT(reject()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue