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:
parent
d75f05d4c0
commit
f0e2a297ae
1 changed files with 4 additions and 2 deletions
|
@ -2,7 +2,7 @@ import QtQuick 2.4
|
||||||
import QtQml 2.4
|
import QtQml 2.4
|
||||||
|
|
||||||
import FlightGear.Launcher 1.0
|
import FlightGear.Launcher 1.0
|
||||||
import ".."
|
import "."
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
@ -91,11 +91,13 @@ Item {
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: notificationsColumn
|
id: notificationsColumn
|
||||||
|
// height of this is determined by content. This is important
|
||||||
|
// so the mouse area above only blocks clicks near active
|
||||||
|
// notifciations
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
right: parent.right
|
right: parent.right
|
||||||
top: parent.top
|
top: parent.top
|
||||||
bottom: parent.bottom
|
|
||||||
left: parent.left
|
left: parent.left
|
||||||
margins: Style.strutSize
|
margins: Style.strutSize
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue