X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FTopArea.qml;h=978018c33de830a7452a6766b8b109e49331e4d3;hb=6b690965ae4418f8d180c092ad42a999718dbc91;hp=9cff3ed6044247e64a6d2df70213237944eb6be0;hpb=85392e71f90a0322fdc08359ef1d829cdcf67381;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/TopArea.qml b/homescreen/qml/TopArea.qml index 9cff3ed..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.png' - 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 - } }