mirror of
https://github.com/penpot/penpot.git
synced 2025-08-01 12:08:30 +02:00
🐛 Assign correct fill to match standard svg behavior when no fils found
On parsing svg
This commit is contained in:
parent
63b264b494
commit
ad185c4215
2 changed files with 13 additions and 13 deletions
|
@ -21,6 +21,9 @@
|
|||
[cuerdas.core :as str]
|
||||
[rumext.v2 :as mf]))
|
||||
|
||||
;; FIXME: this clearly should be renamed to something different, this
|
||||
;; namespace has also fill related code
|
||||
|
||||
(mf/defc inner-stroke-clip-path
|
||||
{::mf/wrap-props false}
|
||||
[{:keys [shape render-id index]}]
|
||||
|
@ -449,10 +452,8 @@
|
|||
(obj/unset! style "fillOpacity")
|
||||
(obj/set! props "fill" (dm/fmt "url(#fill-%-%)" position render-id)))
|
||||
|
||||
(and ^boolean (or (obj/contains? svg-styles "fill")
|
||||
(obj/contains? svg-styles "fillOpacity"))
|
||||
(and ^boolean (some? svg-styles)
|
||||
^boolean (obj/contains? svg-styles "fill"))
|
||||
|
||||
(let [fill (obj/get svg-styles "fill")
|
||||
opacity (obj/get svg-styles "fillOpacity")]
|
||||
(when (some? fill)
|
||||
|
@ -460,8 +461,7 @@
|
|||
(when (some? opacity)
|
||||
(obj/set! style "fillOpacity" opacity)))
|
||||
|
||||
(and ^boolean (or (obj/contains? svg-attrs "fill")
|
||||
(obj/contains? svg-attrs "fillOpacity"))
|
||||
(and ^boolean (some? svg-attrs)
|
||||
^boolean (empty? shape-fills))
|
||||
(let [fill (obj/get svg-attrs "fill")
|
||||
opacity (obj/get svg-attrs "fillOpacity")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue