diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-10-20 11:02:51 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-10-20 17:28:02 +0000 |
commit | c0259ca64531f30911328be4277685f76a815af9 (patch) | |
tree | c8746b06073d1b4cb99535648e757e231d865ce5 | |
parent | f98a6ed1cb643ca223c7085f3d6ec7f18c546a2c (diff) |
Updates to handle larger remote displayhalibut_8.0.3halibut/8.0.38.0.3
Tweak the locations and sizes of various widgets to handle larger 640x720 remote
display area used by tbtnavi on IVI board.
Bug-AGL: 2915
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I4d39c94ac198217ef1200afef2b0c0e1f5a50bfd
-rw-r--r-- | app/cluster-gauges.qml | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/app/cluster-gauges.qml b/app/cluster-gauges.qml index a48d71c..76f5027 100644 --- a/app/cluster-gauges.qml +++ b/app/cluster-gauges.qml @@ -80,7 +80,7 @@ ApplicationWindow { Rectangle { id: statusFrame x: (parent.width - width) / 2 - y: 80 + y: 40 width: 1152 height: 96 radius: height / 5 @@ -340,8 +340,8 @@ ApplicationWindow { } Item { - x: 36 - y: 240 + x: 18 + y: 260 width: 600 height: width @@ -360,8 +360,8 @@ ApplicationWindow { } Item { - x: 1284 - y: 240 + x: 1302 + y: 260 width: 600 height: width @@ -427,10 +427,10 @@ ApplicationWindow { Rectangle { id: frame - x: 672 - y: 264 - width: 576 - height: 552 + x: 640 + y: 180 + width: 640 + height: 720 color: "black" border.width: 4 @@ -447,9 +447,8 @@ ApplicationWindow { Image { source: './images/agl_title_793x211.png' - //x: 772 x: (parent.width - width) / 2 - y: 898 + y: 940 width: 376 height: 100 } |