fix: file dialog sizing

This commit is contained in:
2 * r + 2 * t 2026-06-05 22:39:07 +10:00
parent 93a117e2fe
commit cae57dae4f
3 changed files with 6 additions and 3 deletions

View file

@ -50,7 +50,10 @@ LazyLoader {
implicitWidth: 1000
implicitHeight: 600
minimumSize.width: 400
minimumSize.height: 300
color: Colours.tPalette.m3surface
surfaceFormat.opaque: false
title: loader.title
onVisibleChanged: {

View file

@ -90,7 +90,7 @@ StyledRect {
return "folder";
}
color: place.selected ? Colours.palette.m3onSecondaryContainer : Colours.palette.m3onSurface
fontStyle: Tokens.font.icon.large
fontStyle: Tokens.font.icon.medium
fill: place.selected ? 1 : 0
Behavior on fill {
@ -104,7 +104,7 @@ StyledRect {
Layout.fillWidth: true
text: place.modelData
color: place.selected ? Colours.palette.m3onSecondaryContainer : Colours.palette.m3onSurface
font: Tokens.font.body.medium
font: Tokens.font.body.small
elide: Text.ElideRight
}
}

View file

@ -4,5 +4,5 @@ import Quickshell
Singleton {
property int itemWidth: 103
property int sidebarWidth: 200
property int sidebarWidth: 230
}