diff options
author | 2018-11-29 13:33:12 +0900 | |
---|---|---|
committer | 2018-11-29 13:33:12 +0900 | |
commit | 0afbd6791199d891fe1291eec50d6b0619bca9b6 (patch) | |
tree | a6d491da4f0ca1b92d3738d238d1547a19d8fb80 | |
parent | 67093a2a607043a0a7701846f56250677363624b (diff) |
change km/h to mph
-rw-r--r-- | app/Dashboard.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Dashboard.qml b/app/Dashboard.qml index 496062b..36c0dc3 100644 --- a/app/Dashboard.qml +++ b/app/Dashboard.qml @@ -111,13 +111,13 @@ ApplicationWindow { id: unit anchors.left: speed.right anchors.baseline: speed.baseline - text: 'Km/h' + text: 'mph' //'Km/h' font.pixelSize: 64 } Label { anchors.left: unit.left anchors.top: unit.bottom - text: '100,000.5 km' + text: '100,000.5 miles' font.pixelSize: 32 opacity: 0.5 } |