summaryrefslogtreecommitdiff
path: root/modules/launcher/Launcher.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/launcher/Launcher.qml')
-rw-r--r--modules/launcher/Launcher.qml8
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml
index 849a569..798249f 100644
--- a/modules/launcher/Launcher.qml
+++ b/modules/launcher/Launcher.qml
@@ -22,8 +22,11 @@ Scope {
visible: wrapper.shouldBeVisible
width: content.width + bg.rounding * 2
- height: content.implicitHeight
+ mask: Region {
+ item: wrapper
+ }
+ anchors.top: true
anchors.bottom: true
Background {
@@ -36,9 +39,12 @@ Scope {
id: wrapper
launcherVisible: root.launcherVisible
+ contentHeight: content.height
Content {
id: content
+
+ launcher: root
}
}
}