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:45:37 -0500 |
commit | 8f8d3780a33dc61dc71449a6aa44b5cb49acdbd4 (patch) | |
tree | 65f2dd987b3ddd2f9d581cf617125b71ebd5713c | |
parent | 2c6de5fe42d2a71ab51c5d60194ada8678904046 (diff) |
Switch units to MPHflounder_6.0.5flounder_6.0.4flounder/6.0.5flounder/6.0.46.0.56.0.4flounder
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 } |