fixed tray + media popouts

This commit is contained in:
2026-08-11 11:29:04 +02:00
parent ccb54f01d9
commit 3e02c3f36a
5 changed files with 66 additions and 9 deletions
+9 -2
View File
@@ -8,7 +8,14 @@ MultiEffect {
maskEnabled: maskItem !== null
maskSource: maskItem
// Hard edge — the chopped corners should read as cuts, not fades.
// The chopped corners should read as cuts, not fades — but a spread of 0
// is a hard `alpha < 0.5 ? 0 : 1` step, which throws away the one thing
// that makes the cut look drawn rather than pixelated: the mask Shape's own
// coverage antialiasing. Every partially covered pixel along a diagonal got
// rounded to all-or-nothing and the art came out with a visible staircase
// down both leaning edges. A narrow spread lets that single-pixel ramp
// through and nothing wider — still a cut, just not a jagged one.
maskThresholdMin: 0.5
maskSpreadAtMin: 0.0
maskSpreadAtMin: 0.3
}