diff options
Diffstat (limited to 'modules/bar/popouts/Content.qml')
| -rw-r--r-- | modules/bar/popouts/Content.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/bar/popouts/Content.qml b/modules/bar/popouts/Content.qml index be45eac..c10348c 100644 --- a/modules/bar/popouts/Content.qml +++ b/modules/bar/popouts/Content.qml @@ -1,7 +1,6 @@ import "root:/services" import "root:/config" import Quickshell -import Quickshell.Widgets import QtQuick Item { @@ -13,7 +12,6 @@ Item { implicitWidth: Popouts.hasCurrent ? content.children.find(c => c.shouldBeActive).implicitWidth + Appearance.padding.large * 2 : 0 implicitHeight: Popouts.hasCurrent ? content.children.find(c => c.shouldBeActive).implicitHeight + Appearance.padding.large * 2 : 0 - clip: true Item { id: content @@ -47,6 +45,9 @@ Item { required property string name property bool shouldBeActive: Popouts.currentName === name + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + active: shouldBeActive asynchronous: true |