Pull in latest IPC commit to actually parse the state
This commit is contained in:
parent
81507d5251
commit
e4aae6bc94
|
|
@ -702,8 +702,7 @@ void BreezyDesktopEffectConfig::pollDriverState()
|
|||
m_connectedDeviceModel = stateJson.value(QStringLiteral("connected_device_model")).toString();
|
||||
m_connectedDeviceFullDistanceCm = stateJson.value(QStringLiteral("connected_device_full_distance_cm")).toDouble(0.0);
|
||||
m_connectedDeviceFullSizeCm = stateJson.value(QStringLiteral("connected_device_full_size_cm")).toDouble(0.0);
|
||||
const QString poseHasPosition = stateJson.value(QStringLiteral("connected_device_pose_has_position")).toString();
|
||||
m_connectedDevicePoseHasPosition = (poseHasPosition == QLatin1String("true"));
|
||||
m_connectedDevicePoseHasPosition = stateJson.value(QStringLiteral("connected_device_pose_has_position")).toBool(false);
|
||||
|
||||
applyDistanceLabelFormatters();
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 1655c2bb03a4e75bf2c9a9815a96b71342396fbd
|
||||
Subproject commit 44657a5de6532ac0ec1a4ce6d3ccd73e2c87fdc6
|
||||
Loading…
Reference in New Issue