diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-03-16 17:07:54 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 17:07:54 -0400 |
| commit | bb6717666a669aa81cda28896ed292ca5af55ece (patch) | |
| tree | 5f3c5fed20fd3bf8fe38e10d7e09b81558c64a79 /modules/utilities/Content.qml | |
| parent | add date to clock (diff) | |
| download | caelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.tar.gz caelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.tar.bz2 caelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.zip | |
change things
Diffstat (limited to 'modules/utilities/Content.qml')
| -rw-r--r-- | modules/utilities/Content.qml | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/utilities/Content.qml b/modules/utilities/Content.qml deleted file mode 100644 index 770a774..0000000 --- a/modules/utilities/Content.qml +++ /dev/null @@ -1,27 +0,0 @@ -import "cards" -import qs.config -import QtQuick -import QtQuick.Layouts - -Item { - id: root - - required property var props - required property var visibilities - required property Item popouts - - implicitWidth: layout.implicitWidth - implicitHeight: layout.implicitHeight - - ColumnLayout { - id: layout - - anchors.fill: parent - spacing: Appearance.spacing.normal - - Toggles { - visibilities: root.visibilities - popouts: root.popouts - } - } -} |