From 2e26c9122bb027e79e9af441f8a801f360de43f6 Mon Sep 17 00:00:00 2001 From: Luis de Dios Date: Fri, 18 Sep 2026 11:33:02 +0200 Subject: [PATCH] :bug: Fix per-side toggle in multiselect if side widths are equal --- .../app/main/ui/workspace/sidebar/options/menus/stroke.cljs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/stroke.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/stroke.cljs index 5547130ad5..fabf601529 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/stroke.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/stroke.cljs @@ -143,7 +143,11 @@ per-side-available? (and (contains? cf/flags :stroke-per-side) - (or (= type :rect) (= type :frame))) + (or (= type :rect) + (= type :frame) + (and (= type :multiple) + (not= strokes :multiple) + (not= (:stroke-width values) :multiple)))) per-side-disabled? (not wasm-render?)