diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-10 12:18:21 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-10 12:18:21 +0300 |
commit | 3a7d88cf2cc33cfba6a0759692e88700103bc4d9 (patch) | |
tree | 262f935ce6a0a8de095f4903d24ef674fc0817cc | |
parent | f386507d3c6996e39fcd459d032b9e0cf6f0f563 (diff) |
homescreen: fix master volume control name
Fixes the master volume control on the homescreen, which broke after
I renamed the control in agl-service-audiomixer to "Master Playback"
Bug-AGL: SPEC-3844
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
Change-Id: Iadc859b29d823a703865a301877a75575a78a650
-rw-r--r-- | homescreen/src/mastervolume.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/homescreen/src/mastervolume.cpp b/homescreen/src/mastervolume.cpp index 98b884d..43beaef 100644 --- a/homescreen/src/mastervolume.cpp +++ b/homescreen/src/mastervolume.cpp @@ -19,6 +19,8 @@ #include <QTimer> #include <QtDebug> +#define MASTER_CONTROL "Master Playback" + MasterVolume::MasterVolume(QObject* parent) : QObject(parent) , m_volume{50} @@ -46,7 +48,7 @@ void MasterVolume::setVolume(qint32 volume) { m_volume = volume; QJsonObject arg; - arg.insert("control", "Master"); + arg.insert("control", MASTER_CONTROL); double v = (double) volume / 100.0; arg.insert("value", v); m_client.call("audiomixer", "volume", arg); @@ -56,7 +58,7 @@ void MasterVolume::setVolume(qint32 volume) void MasterVolume::onClientConnected() { QJsonObject arg; - arg.insert("control", "Master"); + arg.insert("control", MASTER_CONTROL); m_client.call("audiomixer", "volume", arg, [this](bool r, const QJsonValue& v) { if (r && v.isObject()) { int volume = v.toObject()["response"].toObject()["volume"].toDouble() * 100; @@ -92,7 +94,7 @@ void MasterVolume::onClientEventReceived(QString name, const QJsonValue& data) { QString ctlName = data.toObject()["control"].toString(); - if (ctlName != "Master") + if (ctlName != MASTER_CONTROL) return; int volume = data.toObject()["value"].toDouble() * 100; |