diff options
Diffstat (limited to 'app/Speed.qml')
-rw-r--r-- | app/Speed.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/app/Speed.qml b/app/Speed.qml index 46ec01f..bb99f40 100644 --- a/app/Speed.qml +++ b/app/Speed.qml @@ -19,8 +19,8 @@ import QtQuick.Layouts 1.3 import QtWebSockets 1.0 Item { - property real imgwidth: 300 - property real imgheight: 300 + property real imgwidth: 360 + property real imgheight: 360 property var spdlist: [ "images/meters/speed_0.svg", "images/meters/speed_1.svg", "images/meters/speed_2.svg", "images/meters/speed_3.svg", @@ -31,8 +31,8 @@ Item { property var spdlimit: [ "images/meters/speed_limit_none.svg" ] Image { - width: 280 - height: 280 + width: 336 + height: 336 anchors.top: parent.top anchors.topMargin: 17 anchors.horizontalCenter: parent.horizontalCenter @@ -45,7 +45,6 @@ Item { Image { width: imgwidth height: imgheight - fillMode: Image.PreserveAspectFit smooth: true asynchronous: true source: spdlimit[0] |