From c75b1befd2ec8d146ea4e14df79e23abce25b20d Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Mon, 17 Oct 2016 10:09:08 +0200 Subject: [PATCH] fix(mainWindow): increase logo area height --- tests/ui/modules/Common/InvertedMouseArea.qml | 4 +++- tests/ui/views/MainWindow/MainWindow.qml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/ui/modules/Common/InvertedMouseArea.qml b/tests/ui/modules/Common/InvertedMouseArea.qml index 011c0bd73..93fa60426 100644 --- a/tests/ui/modules/Common/InvertedMouseArea.qml +++ b/tests/ui/modules/Common/InvertedMouseArea.qml @@ -96,7 +96,9 @@ Item { // call. // // The timeout is destroyed with the `MouseArea` component. - _timeout = Utils.setTimeout.call(this, 0, item.pressed.bind(this)) + _timeout = Utils.setTimeout.call( + this, 0, item.pressed.bind(this) + ) } } } diff --git a/tests/ui/views/MainWindow/MainWindow.qml b/tests/ui/views/MainWindow/MainWindow.qml index 82b91ee84..dfe897e6a 100644 --- a/tests/ui/views/MainWindow/MainWindow.qml +++ b/tests/ui/views/MainWindow/MainWindow.qml @@ -205,7 +205,7 @@ ApplicationWindow { // Logo. Rectangle { Layout.fillWidth: true - Layout.preferredHeight: 70 + Layout.preferredHeight: 80 color: '#EAEAEA' } }