X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FTopArea.qml;h=978018c33de830a7452a6766b8b109e49331e4d3;hb=c5aad6f23f523bf44bf58419bb2fc41262be2180;hp=2a75cf852bc69613f111cdcfb0cc66ebe2802be3;hpb=856f9d9de4473a537ce4084271008fd40e230e8f;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/TopArea.qml b/homescreen/qml/TopArea.qml index 2a75cf8..978018c 100644 --- a/homescreen/qml/TopArea.qml +++ b/homescreen/qml/TopArea.qml @@ -19,41 +19,18 @@ import QtQuick 2.2 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 -Image { - width: 1920 - height: 218 - source: './images/TopSection_NoText_NoIcons-01.svg' - fillMode: Image.PreserveAspectCrop +Item { + width: 700 + height: 80 RowLayout { anchors.fill: parent spacing: 0 - ShortcutArea { - id: shortcutArea - Layout.fillWidth: true - Layout.fillHeight: true - Layout.preferredWidth: 785 - } StatusArea { id: statusArea Layout.fillWidth: true Layout.fillHeight: true - Layout.preferredWidth: 295 + Layout.preferredWidth: 700 } } - - Timer { - id: launching - interval: 500 - running: launcher.launching - } - - ProgressBar { - id: progressBar - anchors.verticalCenter: parent.bottom - anchors.left: parent.left - anchors.right: parent.right - indeterminate: visible - visible: launcher.launching && !launching.running - } }