From e476153086bf81c1550eaf520b2df1bd50430b24 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 25 Sep 2025 13:04:04 -0400 Subject: [PATCH] fix(outline): pass the radii in the correct order for the shader --- src/shell/element/surface.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shell/element/surface.rs b/src/shell/element/surface.rs index 9c624958..c85390e0 100644 --- a/src/shell/element/surface.rs +++ b/src/shell/element/surface.rs @@ -147,10 +147,10 @@ impl CosmicSurface { guard.corners.map(|corners| { [ - corners.top_right.min(half_min_dim), corners.bottom_right.min(half_min_dim), - corners.top_left.min(half_min_dim), + corners.top_right.min(half_min_dim), corners.bottom_left.min(half_min_dim), + corners.top_left.min(half_min_dim), ] }) })