change size to 1920x1080
[apps/homescreen.git] / homescreen / qml / TopArea.qml
index 2a75cf8..978018c 100644 (file)
@@ -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
-    }
 }