diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-21 22:47:13 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-21 22:47:13 +1000 |
| commit | 4a86b66d06dda958f8d136234225ed160604a61a (patch) | |
| tree | 8dab0f695e035f26dccc2089ee4636c2b7b7ee2a /modules/bar/popouts/ActiveWindow.qml | |
| parent | popouts: convert to layout (diff) | |
| download | caelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.tar.gz caelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.tar.bz2 caelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.zip | |
feat: window info panel
Also disable reload popup
Diffstat (limited to 'modules/bar/popouts/ActiveWindow.qml')
| -rw-r--r-- | modules/bar/popouts/ActiveWindow.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml index d92d436..fbad79e 100644 --- a/modules/bar/popouts/ActiveWindow.qml +++ b/modules/bar/popouts/ActiveWindow.qml @@ -10,6 +10,8 @@ import QtQuick.Layouts Item { id: root + required property Item wrapper + implicitWidth: Hyprland.activeClient ? child.implicitWidth : -Appearance.padding.large * 2 implicitHeight: child.implicitHeight @@ -65,7 +67,7 @@ Item { radius: Appearance.rounding.normal function onClicked(): void { - // TODO + root.wrapper.detach("winfo"); } } |