diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-28 11:01:48 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-28 11:01:48 +1000 |
| commit | f7b0e4665b223d86045110ff3d4704c1a7760a4d (patch) | |
| tree | 5e71541184bf7b736b99d689e4920dda44eeefd8 /widgets/ClippingBoxLayout.qml | |
| parent | feat: anims + box padding (diff) | |
| download | caelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.tar.gz caelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.tar.bz2 caelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.zip | |
format: conform to qml coding conventions
Diffstat (limited to 'widgets/ClippingBoxLayout.qml')
| -rw-r--r-- | widgets/ClippingBoxLayout.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/ClippingBoxLayout.qml b/widgets/ClippingBoxLayout.qml index 2b22c8c..e96554c 100644 --- a/widgets/ClippingBoxLayout.qml +++ b/widgets/ClippingBoxLayout.qml @@ -6,6 +6,8 @@ import QtQuick.Layouts ClippingRectangle { id: root + default property alias children: layout.children + property bool vertical: false property bool homogenous: false property bool animated: false @@ -19,11 +21,6 @@ ClippingRectangle { readonly property int paddingX: getRealPadding().x readonly property int paddingY: getRealPadding().y - color: "transparent" - - implicitWidth: layout.implicitWidth + paddingX - implicitHeight: layout.implicitHeight + paddingY - function getRealPadding() { const pad = {}; @@ -51,7 +48,10 @@ ClippingRectangle { return pad; } - default property alias children: layout.children + color: "transparent" + + implicitWidth: layout.implicitWidth + paddingX + implicitHeight: layout.implicitHeight + paddingY GridLayout { id: layout |