mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 09:55:55 +00: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
@ -48,7 +48,7 @@ PowerManagementInhibitor::PowerManagementInhibitor(QObject *parent)
|
|||||||
|
|
||||||
m_intendedState = Idle;
|
m_intendedState = Idle;
|
||||||
m_cookie = 0;
|
m_cookie = 0;
|
||||||
m_useGSM = false;
|
m_useGSM = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PowerManagementInhibitor::requestIdle()
|
void PowerManagementInhibitor::requestIdle()
|
||||||
@ -135,9 +135,9 @@ void PowerManagementInhibitor::onAsyncReply(QDBusPendingCallWatcher *call)
|
|||||||
if (reply.isError()) {
|
if (reply.isError()) {
|
||||||
qDebug("D-Bus: Reply: Error: %s", qUtf8Printable(reply.error().message()));
|
qDebug("D-Bus: Reply: Error: %s", qUtf8Printable(reply.error().message()));
|
||||||
|
|
||||||
if (!m_useGSM) {
|
if (m_useGSM) {
|
||||||
qDebug("D-Bus: Falling back to org.gnome.SessionManager");
|
qDebug("D-Bus: Falling back to org.freedesktop.PowerManagement");
|
||||||
m_useGSM = true;
|
m_useGSM = false;
|
||||||
m_state = Idle;
|
m_state = Idle;
|
||||||
if (m_intendedState == Busy)
|
if (m_intendedState == Busy)
|
||||||
requestBusy();
|
requestBusy();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user