summaryrefslogtreecommitdiffstats
path: root/app/cluster-gauges.qml
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2024-08-15 15:56:04 -0400
committerScott Murray <scott.murray@konsulko.com>2024-08-17 12:37:48 +0000
commit5b69d50808ea4d90af1cdb037f25309baae23fdf (patch)
treec357c57e3ecdcabb6da191ed41c1ef915131b8b8 /app/cluster-gauges.qml
parentc77dbf0f6d205dc077b405ad34b9945b7237f245 (diff)
Update use of the VSS engine speed (RPM) signal to match the fix done to the AGL VSS overlays to restore the upstream integer data type. The usage in this application did not technically require updating, as it happened to still work since the integer values parse as floats in the QML usage. However, it seems useful to have usage be consistent across the demo applications. Bug-AGL: SPEC-5204 Change-Id: I422b91d68ff4331f15e1aff81c650e8a157dd72a Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'app/cluster-gauges.qml')
-rw-r--r--app/cluster-gauges.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/cluster-gauges.qml b/app/cluster-gauges.qml
index e4c299b..95412f6 100644
--- a/app/cluster-gauges.qml
+++ b/app/cluster-gauges.qml
@@ -410,7 +410,7 @@ ApplicationWindow {
height: width
maximumValue: 8
- value: valueSource.rpm
+ value: valueSource.rpm / 1000.0
style: TachometerStyle {}
}