X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FTopArea.qml;h=3b0b25acc3d3044b0fbec523148247a80464a347;hb=b7b156ece9492401f7bfe7676e7521f4cdd32905;hp=9cff3ed6044247e64a6d2df70213237944eb6be0;hpb=85392e71f90a0322fdc08359ef1d829cdcf67381;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/TopArea.qml b/homescreen/qml/TopArea.qml index 9cff3ed..3b0b25a 100644 --- a/homescreen/qml/TopArea.qml +++ b/homescreen/qml/TopArea.qml @@ -20,10 +20,10 @@ import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 Image { - width: 1920 - height: 218 - source: './images/TopSection_NoText_NoIcons-01.png' - fillMode: Image.PreserveAspectCrop + anchors.fill: parent + source: './images/TopSection_NoText_NoIcons-01.svg' + //fillMode: Image.PreserveAspectCrop + fillMode: Image.Stretch RowLayout { anchors.fill: parent @@ -32,16 +32,16 @@ Image { id: shortcutArea Layout.fillWidth: true Layout.fillHeight: true - Layout.preferredWidth: 785 + Layout.preferredWidth: 775 } StatusArea { id: statusArea Layout.fillWidth: true Layout.fillHeight: true - Layout.preferredWidth: 295 + Layout.preferredWidth: 291 } } - +/* Timer { id: launching interval: 500 @@ -56,4 +56,5 @@ Image { indeterminate: visible visible: launcher.launching && !launching.running } +*/ }