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' } }