Fix status bar layout can be broken 05/7705/2
authorTasuku Suzuki <tasuku.suzuki@qt.io>
Tue, 20 Dec 2016 10:20:56 +0000 (19:20 +0900)
committerTasuku Suzuki <tasuku.suzuki@qt.io>
Tue, 20 Dec 2016 10:44:07 +0000 (19:44 +0900)
This happens when empty file is set for a status icon

Change-Id: I81a232a99cf9ee5df242f78058958b4593521bc8
Signed-off-by: Tasuku Suzuki <tasuku.suzuki@qt.io>
HomeScreen/qml/StatusArea.qml

index 4ed969d..ca9a3ef 100644 (file)
@@ -94,6 +94,8 @@ Item {
             Repeater {
                 model: StatusBarModel {}
                 delegate: Image {
+                    Layout.preferredWidth: 77
+                    Layout.preferredHeight: 73
                     source: model.modelData
                     fillMode: Image.PreserveAspectFit
                 }