fix: ui: let the layout decide group height
Some checks are pending
(CI) lsfg-vk / build (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (23.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (24.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (25.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-ui (push) Waiting to run

for some reason one the Steam Deck pixels don't quite mean pixels
This commit is contained in:
PancakeTAS 2025-12-25 06:23:47 +01:00
parent 1975f2f64f
commit 6d2ed649c9
No known key found for this signature in database
2 changed files with 8 additions and 10 deletions

View file

@ -9,7 +9,7 @@ import "widgets"
ApplicationWindow {
title: "lsfg-vk Configuration Window"
width: 900
height: 475
height: 550
minimumWidth: 700
minimumHeight: 400
visible: true

View file

@ -9,15 +9,13 @@ RowLayout {
id: root
spacing: 12
height: 32
Item {
Layout.fillWidth: true
Layout.fillHeight: true
ColumnLayout {
clip: true
ColumnLayout {
anchors.fill: parent
Layout.fillWidth: true
Layout.fillHeight: true
spacing: 0
Label {
@ -37,12 +35,12 @@ RowLayout {
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
RowLayout {
Item {
Layout.fillWidth: true
}
ColumnLayout {
anchors.fill: parent
spacing: 0
id: inner
}