diff options
Diffstat (limited to 'modules/launcher/Wrapper.qml')
| -rw-r--r-- | modules/launcher/Wrapper.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml index c997781..fb9bb06 100644 --- a/modules/launcher/Wrapper.qml +++ b/modules/launcher/Wrapper.qml @@ -9,14 +9,14 @@ Item { visible: height > 0 implicitHeight: 0 - implicitWidth: content.width + BorderConfig.rounding * 2 + implicitWidth: content.implicitWidth + BorderConfig.rounding * 2 states: State { name: "visible" when: root.visibilities.launcher PropertyChanges { - root.implicitHeight: content.height + root.implicitHeight: content.implicitHeight } } |