mirror of
https://github.com/penpot/penpot.git
synced 2026-05-06 00:28:43 +00:00
🐛 Fix problem with default shadows in plugins
This commit is contained in:
parent
dc006bd7f2
commit
25621f8deb
@ -24,6 +24,7 @@
|
||||
- The plugin list in the navigation menu lacks scrolling, some plugins are not visible when a large number are installed [Taiga #9360](https://tree.taiga.io/project/penpot/us/9360)
|
||||
- Fix hidden toolbar click event still available [Taiga #10437](https://tree.taiga.io/project/penpot/us/10437)
|
||||
- Fix hovering over templates [Taiga #10545](https://tree.taiga.io/project/penpot/issue/10545)
|
||||
- Fix problem with default shadows value in plugins [Plugins #191](https://github.com/penpot/penpot-plugins/issues/191)
|
||||
|
||||
## 2.5.4
|
||||
|
||||
|
||||
@ -176,8 +176,9 @@
|
||||
|
||||
(defn format-shadows
|
||||
[shadows]
|
||||
(when (some? shadows)
|
||||
(format-array format-shadow shadows)))
|
||||
(if (some? shadows)
|
||||
(format-array format-shadow shadows)
|
||||
(array)))
|
||||
|
||||
;;export interface Fill {
|
||||
;; fillColor?: string;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user