From 8142f4949e593e75dd885df5a138c016bd5892e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elena=20Torr=C3=B3?= Date: Fri, 24 Jul 2026 13:40:47 +0200 Subject: [PATCH] :wrench: Revert stroke to path flag deletion and enable it by default (#10827) --- common/src/app/common/flags.cljc | 1 + frontend/src/app/main/ui/workspace/context_menu.cljs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/flags.cljc b/common/src/app/common/flags.cljc index d211648fe7..27519d487c 100644 --- a/common/src/app/common/flags.cljc +++ b/common/src/app/common/flags.cljc @@ -212,6 +212,7 @@ :enable-render-wasm-info :enable-available-viewer-wasm :enable-background-blur + :enable-stroke-path :enable-token-combobox]) (defn parse diff --git a/frontend/src/app/main/ui/workspace/context_menu.cljs b/frontend/src/app/main/ui/workspace/context_menu.cljs index de3cb44049..eb8b06f9cb 100644 --- a/frontend/src/app/main/ui/workspace/context_menu.cljs +++ b/frontend/src/app/main/ui/workspace/context_menu.cljs @@ -506,7 +506,8 @@ :on-click do-transform-to-path}]) (when (and has-strokes? - (features/active-feature? @st/state "render-wasm/v1")) + (features/active-feature? @st/state "render-wasm/v1") + (contains? cf/flags :stroke-path)) [:> menu-entry* {:title (tr "workspace.shape.menu.stroke-to-path") :on-click do-strokes-to-path}])