0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-13 07:21:40 -05:00

Edit stroke style of artboard/frames.

This commit is contained in:
Andrés Moya 2020-03-27 12:40:21 +01:00 committed by Andrey Antukh
parent 5f938f4f38
commit a8f81fbdf3
2 changed files with 4 additions and 1 deletions

View file

@ -53,6 +53,7 @@
:fill-opacity 0
:segments []}
{:type :frame
:stroke-style :none
:name "Artboard"}
{:type :curve
:name "Path"

View file

@ -17,6 +17,7 @@
[uxbox.main.store :as st]
[uxbox.main.ui.components.dropdown :refer [dropdown]]
[uxbox.main.ui.workspace.sidebar.options.fill :refer [fill-menu]]
[uxbox.main.ui.workspace.sidebar.options.stroke :refer [stroke-menu]]
[uxbox.util.dom :as dom]
[uxbox.util.geom.point :as gpt]
[uxbox.util.i18n :refer [tr]]
@ -201,4 +202,5 @@
[{:keys [shape] :as props}]
[:div
[:& measures-menu {:shape shape}]
[:& fill-menu {:shape shape}]])
[:& fill-menu {:shape shape}]
[:& stroke-menu {:shape shape}]])