aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSvetlana Abramenkova <sabramenkova@luxoft.com>2019-08-21 17:17:41 +0300
committerSvetlana Abramenkova <sabramenkova@luxoft.com>2019-08-29 10:15:12 +0300
commitee3277bf453502f0864e591740b1da785c4cc614 (patch)
tree96d758523ede7c0cc19e726068421e7c4108aee3
parentfb153913437862c8969155fac100dbb9223ddf93 (diff)
fix bench shows error of splash screen resources can not be found
Change-Id: I02d7bda8da43310de0bc0dc8e2bc63216658030c Fixes: AUTOSUITE-1113 Reviewed-by: Nikolay Zamotaev <nzamotaev@luxoft.com>
-rw-r--r--src/runtime/qmlsplash/splash-qt5.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/qmlsplash/splash-qt5.qml b/src/runtime/qmlsplash/splash-qt5.qml
index 1f00d57..d27af09 100644
--- a/src/runtime/qmlsplash/splash-qt5.qml
+++ b/src/runtime/qmlsplash/splash-qt5.qml
@@ -34,8 +34,8 @@ import QtQuick 2.0
Rectangle {
id: root
- width: parent.width ? parent.width : 1024
- height: parent.height ? parent.height : 768
+ width: parent ? parent.width : 1024
+ height: parent ? parent.height : 768
color: "#FF6600"
Image {