Skip to content

Commit e476153

Browse files
wash2Drakulix
authored andcommitted
fix(outline): pass the radii in the correct order for the shader
1 parent 2873d6b commit e476153

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shell/element/surface.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ impl CosmicSurface {
147147

148148
guard.corners.map(|corners| {
149149
[
150-
corners.top_right.min(half_min_dim),
151150
corners.bottom_right.min(half_min_dim),
152-
corners.top_left.min(half_min_dim),
151+
corners.top_right.min(half_min_dim),
153152
corners.bottom_left.min(half_min_dim),
153+
corners.top_left.min(half_min_dim),
154154
]
155155
})
156156
})

0 commit comments

Comments
 (0)