diff options
| -rw-r--r-- | modules/launcher/Wrapper.qml | 1 | ||||
| -rw-r--r-- | modules/osd/Wrapper.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml index e310862..aa16b8a 100644 --- a/modules/launcher/Wrapper.qml +++ b/modules/launcher/Wrapper.qml @@ -8,6 +8,7 @@ Item { required property real contentHeight property bool shouldBeVisible + visible: height > 0 height: 0 clip: true diff --git a/modules/osd/Wrapper.qml b/modules/osd/Wrapper.qml index 92bd3c2..610735f 100644 --- a/modules/osd/Wrapper.qml +++ b/modules/osd/Wrapper.qml @@ -8,6 +8,7 @@ Item { required property real contentWidth property bool shouldBeVisible + visible: width > 0 width: 0 clip: true |