registerShortcut
[apps/homescreen.git] / homescreen / qml / StatusArea.qml
index d2e0930..961cd88 100644 (file)
@@ -109,6 +109,12 @@ Item {
                         font.pixelSize: 32
                     }
                 }
+                MouseArea {
+                    anchors.fill: parent
+                    onClicked: {
+                        homescreenHandler.killRunningApplications()
+                    }
+                }
             }
         }
         ColumnLayout {
@@ -117,11 +123,16 @@ Item {
             Layout.fillHeight: true
             Layout.preferredWidth: 76
             spacing: -10
+            Rectangle {
+                Layout.preferredWidth: 77
+                Layout.preferredHeight: 55
+                opacity: 0
+            }
 
             Image {
                 id: bt_icon
                 Layout.preferredWidth: 77
-                Layout.preferredHeight: 73
+                Layout.preferredHeight: 55
                 source: connStatus ? './images/Status/HMI_Status_Bluetooth_On-01.png' : './images/Status/HMI_Status_Bluetooth_Inactive-01.png'
                 fillMode: Image.PreserveAspectFit
                 property string deviceName: "none"
@@ -138,7 +149,7 @@ Item {
                 model: StatusBarModel { objectName: "statusBar" }
                 delegate: Image {
                     Layout.preferredWidth: 77
-                    Layout.preferredHeight: 73
+                    Layout.preferredHeight: 55
                     source: model.modelData
                     fillMode: Image.PreserveAspectFit
                 }