mirror of
https://github.com/penpot/penpot.git
synced 2025-07-23 15:27:13 +02:00
🐛 Fix copy paste inside a text layer leaves pasted text transparent
This commit is contained in:
parent
0355e1bfc7
commit
655afa088d
2 changed files with 3 additions and 1 deletions
|
@ -42,6 +42,7 @@
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Copy paste inside a text layer leaves pasted text transparent [Taiga #3096](https://tree.taiga.io/project/penpot/issue/3096)
|
||||||
- On dashboard enter on empty search refresh the page [Taiga #2597](https://tree.taiga.io/project/penpot/issue/2597)
|
- On dashboard enter on empty search refresh the page [Taiga #2597](https://tree.taiga.io/project/penpot/issue/2597)
|
||||||
- Pencil cursor changes when activated [Taiga #2276](https://tree.taiga.io/project/penpot/issue/2276)
|
- Pencil cursor changes when activated [Taiga #2276](https://tree.taiga.io/project/penpot/issue/2276)
|
||||||
- Fix icon placement in Mixed message [Taiga #3037](https://tree.taiga.io/project/penpot/issue/3037)
|
- Fix icon placement in Mixed message [Taiga #3037](https://tree.taiga.io/project/penpot/issue/3037)
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
|
|
||||||
(defn immutable-map->map
|
(defn immutable-map->map
|
||||||
[obj]
|
[obj]
|
||||||
(into {} (map (fn [[k v]] [(keyword k) v])) (seq obj)))
|
(let [data (into {} (map (fn [[k v]] [(keyword k) v])) (seq obj))]
|
||||||
|
(assoc data :fills (js->clj (:fills data) :keywordize-keys true))))
|
||||||
|
|
||||||
;; --- DRAFT-JS HELPERS
|
;; --- DRAFT-JS HELPERS
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue