1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

Add tooltip message when system tray icon isn't available

Also don't hide the sub-options as they are already in disabled state.
This commit is contained in:
Chocobo1 2022-07-09 01:54:30 +08:00
parent e4fafb911a
commit e54124fdb8
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -262,6 +262,7 @@ OptionsDialog::OptionsDialog(IGUIApplication *app, QWidget *parent)
// Load options
loadOptions();
#ifdef Q_OS_MACOS
m_ui->checkShowSystray->setVisible(false);
#else
@ -270,8 +271,7 @@ OptionsDialog::OptionsDialog(IGUIApplication *app, QWidget *parent)
{
m_ui->checkShowSystray->setChecked(false);
m_ui->checkShowSystray->setEnabled(false);
m_ui->labelTrayIconStyle->setVisible(false);
m_ui->comboTrayIcon->setVisible(false);
m_ui->checkShowSystray->setToolTip(tr("Disabled due to failed to detect system tray presence"));
}
#endif