1
0
Fork 0

Launcher: Fix excessively large mouse area

The notifications catch are was blocking the summary pane; fix the
size to follow the active notifications.
This commit is contained in:
Automatic Release Builder 2020-10-27 19:23:07 +00:00 committed by James Turner
parent d75f05d4c0
commit f0e2a297ae

View file

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