mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
Change default power management to Gnome Session Manager
As seen on https://www.freedesktop.org/wiki/Specifications/power-management-spec/, the `org.freedesktop.PowerManagement` is obsolete.
This commit is contained in:
parent
9194f60ac0
commit
38d773ca46
1 changed files with 4 additions and 4 deletions
|
@ -48,7 +48,7 @@ PowerManagementInhibitor::PowerManagementInhibitor(QObject *parent)
|
|||
|
||||
m_intendedState = Idle;
|
||||
m_cookie = 0;
|
||||
m_useGSM = false;
|
||||
m_useGSM = true;
|
||||
}
|
||||
|
||||
void PowerManagementInhibitor::requestIdle()
|
||||
|
@ -135,9 +135,9 @@ void PowerManagementInhibitor::onAsyncReply(QDBusPendingCallWatcher *call)
|
|||
if (reply.isError()) {
|
||||
qDebug("D-Bus: Reply: Error: %s", qUtf8Printable(reply.error().message()));
|
||||
|
||||
if (!m_useGSM) {
|
||||
qDebug("D-Bus: Falling back to org.gnome.SessionManager");
|
||||
m_useGSM = true;
|
||||
if (m_useGSM) {
|
||||
qDebug("D-Bus: Falling back to org.freedesktop.PowerManagement");
|
||||
m_useGSM = false;
|
||||
m_state = Idle;
|
||||
if (m_intendedState == Busy)
|
||||
requestBusy();
|
||||
|
|
Loading…
Reference in a new issue