From f0e2a297ae99c059ef366bd81553257f70276e31 Mon Sep 17 00:00:00 2001 From: Automatic Release Builder Date: Tue, 27 Oct 2020 19:23:07 +0000 Subject: [PATCH] Launcher: Fix excessively large mouse area The notifications catch are was blocking the summary pane; fix the size to follow the active notifications. --- src/GUI/qml/NotificationArea.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GUI/qml/NotificationArea.qml b/src/GUI/qml/NotificationArea.qml index ebaf8dcbb..b719da4f0 100644 --- a/src/GUI/qml/NotificationArea.qml +++ b/src/GUI/qml/NotificationArea.qml @@ -2,7 +2,7 @@ import QtQuick 2.4 import QtQml 2.4 import FlightGear.Launcher 1.0 -import ".." +import "." Item { id: root @@ -91,11 +91,13 @@ Item { Column { id: notificationsColumn + // height of this is determined by content. This is important + // so the mouse area above only blocks clicks near active + // notifciations anchors { right: parent.right top: parent.top - bottom: parent.bottom left: parent.left margins: Style.strutSize }