mirror of
https://github.com/penpot/penpot.git
synced 2025-01-31 19:39:07 -05:00
🐛 Fix error when reseting stroke cap
This commit is contained in:
parent
34a2a8815b
commit
e0281b553c
2 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
|||
### :bug: Bugs fixed
|
||||
|
||||
- Fix problem with alt key measures being stuck [Taiga #9348](https://tree.taiga.io/project/penpot/issue/9348)
|
||||
- Fix error when reseting stroke cap
|
||||
|
||||
## 2.4.2
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
(def stroke-caps-line #{:round :square})
|
||||
(def stroke-caps-marker #{:line-arrow :triangle-arrow :square-marker :circle-marker :diamond-marker})
|
||||
(def stroke-caps (set/union stroke-caps-line stroke-caps-marker))
|
||||
(def stroke-caps (conj (set/union stroke-caps-line stroke-caps-marker) nil))
|
||||
|
||||
(def shape-types
|
||||
#{:frame
|
||||
|
|
Loading…
Add table
Reference in a new issue