fix: control center outer rounding

This commit is contained in:
2 * r + 2 * t 2026-04-20 17:18:31 +10:00
parent cc775227f7
commit 68a336249c
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ StyledRect {
anchors.fill: parent anchors.fill: parent
anchors.margins: Tokens.padding.normal anchors.margins: Tokens.padding.normal
radius: Tokens.rounding.small radius: Tokens.rounding.normal
} }
} }
} }

View file

@ -12,7 +12,7 @@ Item {
id: root id: root
required property ShellScreen screen required property ShellScreen screen
readonly property int rounding: floating ? 0 : Tokens.rounding.normal readonly property int rounding: floating ? 0 : Tokens.rounding.large
property alias floating: session.floating property alias floating: session.floating
property alias active: session.active property alias active: session.active