diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-23 23:16:17 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-23 23:16:17 +1000 |
| commit | 06f366e27eb7b54567a3e8f74d6ccf89977876c7 (patch) | |
| tree | e0e778de96e558f33865a226c887a53b157ae7db /components/controls/Menu.qml | |
| parent | readme: update with new configs (diff) | |
| download | caelestia-shell-06f366e27eb7b54567a3e8f74d6ccf89977876c7.tar.gz caelestia-shell-06f366e27eb7b54567a3e8f74d6ccf89977876c7.tar.bz2 caelestia-shell-06f366e27eb7b54567a3e8f74d6ccf89977876c7.zip | |
dashboard/media: improve ui
Diffstat (limited to 'components/controls/Menu.qml')
| -rw-r--r-- | components/controls/Menu.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/controls/Menu.qml b/components/controls/Menu.qml index 7121536..c763b54 100644 --- a/components/controls/Menu.qml +++ b/components/controls/Menu.qml @@ -19,7 +19,7 @@ Elevation { radius: Appearance.rounding.small / 2 level: 2 - implicitWidth: column.implicitWidth + implicitWidth: Math.max(200, column.implicitWidth) implicitHeight: root.expanded ? column.implicitHeight : 0 opacity: root.expanded ? 1 : 0 @@ -31,6 +31,8 @@ Elevation { ColumnLayout { id: column + anchors.left: parent.left + anchors.right: parent.right spacing: 0 Repeater { |