mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Fix wrong logic that disables "prevent sleeping" timer
Also update power management state early so we don't need to wait for the timer timeout to have the effect.
This commit is contained in:
parent
a9f43bd5d2
commit
80016db781
1 changed files with 5 additions and 2 deletions
|
@ -1454,8 +1454,11 @@ void MainWindow::loadPreferences(const bool configureSession)
|
||||||
|
|
||||||
showStatusBar(pref->isStatusbarDisplayed());
|
showStatusBar(pref->isStatusbarDisplayed());
|
||||||
|
|
||||||
if ((pref->preventFromSuspendWhenDownloading() || pref->preventFromSuspendWhenSeeding()) && !m_preventTimer->isActive()) {
|
if (pref->preventFromSuspendWhenDownloading() || pref->preventFromSuspendWhenSeeding()) {
|
||||||
m_preventTimer->start(PREVENT_SUSPEND_INTERVAL);
|
if (!m_preventTimer->isActive()) {
|
||||||
|
updatePowerManagementState();
|
||||||
|
m_preventTimer->start(PREVENT_SUSPEND_INTERVAL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_preventTimer->stop();
|
m_preventTimer->stop();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue