diff options
author | Scott Murray <scott.murray@konsulko.com> | 2018-12-18 13:45:37 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2018-12-18 13:48:38 -0500 |
commit | 8c48d09f479f798f8deec4dd36c26729c351df21 (patch) | |
tree | b208735ab4ff396dd031f8b6e9dc4033084a657a | |
parent | a6aa079ea69a0fd429460020bb80e842cf0cc4bf (diff) |
Switch units to MPHhalibut_7.90.0halibut/7.90.0guppy_6.99.4guppy_6.99.3guppy/6.99.4guppy/6.99.37.90.06.99.46.99.3
For now, switch the speed and mileage units to miles per hour / miles
for CES, and lower the displayed mileage to something more reflective
of a new model car. Something more dynamic should be put in place
down the road.
Change-Id: Iee92d4bd2b1e6bbd39e856197c2ca9434cdb7b0a
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-rw-r--r-- | app/Dashboard.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Dashboard.qml b/app/Dashboard.qml index 2c23fb0..d343d8a 100644 --- a/app/Dashboard.qml +++ b/app/Dashboard.qml @@ -104,20 +104,20 @@ ApplicationWindow { anchors.left: parent.left anchors.top: parent.top anchors.margins: 20 - text: speed_val.toFixed(0) /* KPH */ + text: speed_val.toFixed(0) /* MPH */ font.pixelSize: 256 } Label { id: unit anchors.left: speed.right anchors.baseline: speed.baseline - text: 'Km/h' + text: 'MPH' font.pixelSize: 64 } Label { anchors.left: unit.left anchors.top: unit.bottom - text: '100,000.5 km' + text: '10,000.5 miles' font.pixelSize: 32 opacity: 0.5 } |