mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 07:46:17 -07:00
Revise behavior of initializing checkboxes
The checkboxes initial value should not depend on parent state and should be restored anyway.
This commit is contained in:
parent
2ef059807a
commit
e4fafb911a
2 changed files with 6 additions and 35 deletions
|
@ -675,10 +675,10 @@ void OptionsDialog::saveOptions()
|
||||||
pref->setHideZeroValues(m_ui->checkHideZero->isChecked());
|
pref->setHideZeroValues(m_ui->checkHideZero->isChecked());
|
||||||
pref->setHideZeroComboValues(m_ui->comboHideZero->currentIndex());
|
pref->setHideZeroComboValues(m_ui->comboHideZero->currentIndex());
|
||||||
#ifndef Q_OS_MACOS
|
#ifndef Q_OS_MACOS
|
||||||
pref->setSystemTrayEnabled(systemTrayEnabled());
|
pref->setSystemTrayEnabled(m_ui->checkShowSystray->isChecked());
|
||||||
pref->setTrayIconStyle(TrayIcon::Style(m_ui->comboTrayIcon->currentIndex()));
|
pref->setTrayIconStyle(TrayIcon::Style(m_ui->comboTrayIcon->currentIndex()));
|
||||||
pref->setCloseToTray(closeToTray());
|
pref->setCloseToTray(m_ui->checkCloseToSystray->isChecked());
|
||||||
pref->setMinimizeToTray(minimizeToTray());
|
pref->setMinimizeToTray(m_ui->checkMinimizeToSysTray->isChecked());
|
||||||
#endif
|
#endif
|
||||||
pref->setStartMinimized(startMinimized());
|
pref->setStartMinimized(startMinimized());
|
||||||
pref->setSplashScreenDisabled(isSplashScreenDisabled());
|
pref->setSplashScreenDisabled(isSplashScreenDisabled());
|
||||||
|
@ -935,12 +935,9 @@ void OptionsDialog::loadOptions()
|
||||||
|
|
||||||
#ifndef Q_OS_MACOS
|
#ifndef Q_OS_MACOS
|
||||||
m_ui->checkShowSystray->setChecked(pref->systemTrayEnabled());
|
m_ui->checkShowSystray->setChecked(pref->systemTrayEnabled());
|
||||||
if (m_ui->checkShowSystray->isChecked())
|
m_ui->checkMinimizeToSysTray->setChecked(pref->minimizeToTray());
|
||||||
{
|
m_ui->checkCloseToSystray->setChecked(pref->closeToTray());
|
||||||
m_ui->checkMinimizeToSysTray->setChecked(pref->minimizeToTray());
|
m_ui->comboTrayIcon->setCurrentIndex(static_cast<int>(pref->trayIconStyle()));
|
||||||
m_ui->checkCloseToSystray->setChecked(pref->closeToTray());
|
|
||||||
m_ui->comboTrayIcon->setCurrentIndex(static_cast<int>(pref->trayIconStyle()));
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_ui->checkPreventFromSuspendWhenDownloading->setChecked(pref->preventFromSuspendWhenDownloading());
|
m_ui->checkPreventFromSuspendWhenDownloading->setChecked(pref->preventFromSuspendWhenDownloading());
|
||||||
|
@ -1354,27 +1351,6 @@ bool OptionsDialog::startMinimized() const
|
||||||
return m_ui->checkStartMinimized->isChecked();
|
return m_ui->checkStartMinimized->isChecked();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef Q_OS_MACOS
|
|
||||||
bool OptionsDialog::systemTrayEnabled() const
|
|
||||||
{
|
|
||||||
return QSystemTrayIcon::isSystemTrayAvailable()
|
|
||||||
? m_ui->checkShowSystray->isChecked()
|
|
||||||
: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool OptionsDialog::minimizeToTray() const
|
|
||||||
{
|
|
||||||
if (!m_ui->checkShowSystray->isChecked()) return false;
|
|
||||||
return m_ui->checkMinimizeToSysTray->isChecked();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool OptionsDialog::closeToTray() const
|
|
||||||
{
|
|
||||||
if (!m_ui->checkShowSystray->isChecked()) return false;
|
|
||||||
return m_ui->checkCloseToSystray->isChecked();
|
|
||||||
}
|
|
||||||
#endif // Q_OS_MACOS
|
|
||||||
|
|
||||||
// Return Share ratio
|
// Return Share ratio
|
||||||
qreal OptionsDialog::getMaxRatio() const
|
qreal OptionsDialog::getMaxRatio() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -123,11 +123,6 @@ private:
|
||||||
void initializeLanguageCombo();
|
void initializeLanguageCombo();
|
||||||
// General options
|
// General options
|
||||||
QString getLocale() const;
|
QString getLocale() const;
|
||||||
#ifndef Q_OS_MACOS
|
|
||||||
bool systemTrayEnabled() const;
|
|
||||||
bool minimizeToTray() const;
|
|
||||||
bool closeToTray() const;
|
|
||||||
#endif
|
|
||||||
bool startMinimized() const;
|
bool startMinimized() const;
|
||||||
bool isSplashScreenDisabled() const;
|
bool isSplashScreenDisabled() const;
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue