aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/TopArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/TopArea.qml')
-rw-r--r--homescreen/qml/TopArea.qml31
1 files changed, 4 insertions, 27 deletions
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
- }
}