diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-17 22:01:40 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-17 22:02:59 -0500 |
| commit | 4de4a787def43587a230ae3de10febc37b34d0ac (patch) | |
| tree | 98418f8a3e5a161e385f40543a87ca2fa563402e /modules/controlcenter/Session.qml | |
| parent | Merge branch 'caelestia-dots:main' into main (diff) | |
| download | caelestia-shell-4de4a787def43587a230ae3de10febc37b34d0ac.tar.gz caelestia-shell-4de4a787def43587a230ae3de10febc37b34d0ac.tar.bz2 caelestia-shell-4de4a787def43587a230ae3de10febc37b34d0ac.zip | |
controlcenter: launcher pane refreshment
Diffstat (limited to 'modules/controlcenter/Session.qml')
| -rw-r--r-- | modules/controlcenter/Session.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/controlcenter/Session.qml b/modules/controlcenter/Session.qml index efd360d..6f560f5 100644 --- a/modules/controlcenter/Session.qml +++ b/modules/controlcenter/Session.qml @@ -13,6 +13,7 @@ QtObject { readonly property Bt bt: Bt {} readonly property Network network: Network {} readonly property Ethernet ethernet: Ethernet {} + readonly property Launcher launcher: Launcher {} onActiveChanged: activeIndex = panes.indexOf(active) onActiveIndexChanged: active = panes[activeIndex] @@ -34,4 +35,8 @@ QtObject { component Ethernet: QtObject { property var active } + + component Launcher: QtObject { + property var active + } } |