Make stroke to path available without config flag (#10792)

This commit is contained in:
Elena Torró 2026-07-23 10:27:14 +02:00 committed by GitHub
parent c57f90d4a2
commit 09730d10d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -175,7 +175,6 @@
:mcp :mcp
:background-blur :background-blur
:available-viewer-wasm :available-viewer-wasm
:stroke-path
:stroke-per-side}) :stroke-per-side})
(def all-flags (def all-flags

View File

@ -454,8 +454,7 @@
:on-click do-transform-to-path}]) :on-click do-transform-to-path}])
(when (and has-strokes? (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") [:> menu-entry* {:title (tr "workspace.shape.menu.stroke-to-path")
:on-click do-strokes-to-path}]) :on-click do-strokes-to-path}])