diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-21 23:38:02 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-21 23:38:02 +1000 |
| commit | 0789b4f66ab7f36f2217e68e3ebc25c19cf44073 (patch) | |
| tree | a1338b1a2ced2c5d3928be55c76673450c74f6c6 /modules/windowinfo/WindowInfo.qml | |
| parent | feat: window info panel (diff) | |
| download | caelestia-shell-0789b4f66ab7f36f2217e68e3ebc25c19cf44073.tar.gz caelestia-shell-0789b4f66ab7f36f2217e68e3ebc25c19cf44073.tar.bz2 caelestia-shell-0789b4f66ab7f36f2217e68e3ebc25c19cf44073.zip | |
winfo: add buttons
Diffstat (limited to 'modules/windowinfo/WindowInfo.qml')
| -rw-r--r-- | modules/windowinfo/WindowInfo.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/windowinfo/WindowInfo.qml b/modules/windowinfo/WindowInfo.qml index 9a5376a..32b21e4 100644 --- a/modules/windowinfo/WindowInfo.qml +++ b/modules/windowinfo/WindowInfo.qml @@ -40,6 +40,18 @@ Item { Details {} } + + StyledRect { + Layout.fillWidth: true + Layout.preferredHeight: buttons.implicitHeight + + color: Colours.palette.m3surfaceContainer + radius: Appearance.rounding.normal + + Buttons { + id: buttons + } + } } } } |