diff --git a/gui/ui/app.slint b/gui/ui/app.slint index b3a4382..0c02324 100644 --- a/gui/ui/app.slint +++ b/gui/ui/app.slint @@ -183,22 +183,20 @@ component GoodButtons inherits ScrollView { in property button-height: 60; in property button-spacing: 10; - property count-x: max(1, floor(root.width / 1pt / (button-width + button-spacing))); + property count-x: floor(root.width / 1pt / (button-width + button-spacing)); property count-y: ceil(favorites.length / count-x); + viewport-height: (count-y * (button-height + button-spacing)) * 1pt; mouse-drag-pan-enabled: true; - GridBox { - for item[idx] in favorites: Button { - col: floor(mod(idx, count-x)); - row: floor(idx / count-x); - min-width: 100pt; - min-height: 60pt; - max-height: 100pt; - text: item; - clicked => { - State.add-to-list(item); - } + for item[idx] in favorites: Button { + x: floor(mod(idx, count-x)) * (root.button-width + root.button-spacing) * 1pt; + y: floor(idx / count-x) * (root.button-height + root.button-spacing) * 1pt; + width: root.button-width * 1pt; + height: root.button-height * 1pt; + text: item; + clicked => { + State.add-to-list(item); } } }