mirror of
https://github.com/penpot/penpot.git
synced 2026-05-27 19:03:39 +00:00
Merge remote-tracking branch 'origin/staging' into develop
This commit is contained in:
commit
6dfd05fdd1
@ -41,6 +41,12 @@
|
|||||||
- Fix main component receives focus and is selected when using 'Show Main Component' [Taiga #11402](https://tree.taiga.io/project/penpot/issue/11402)
|
- Fix main component receives focus and is selected when using 'Show Main Component' [Taiga #11402](https://tree.taiga.io/project/penpot/issue/11402)
|
||||||
- Fix duplicating pages with mainInstance shapes nested inside groups [Taiga #10774](https://tree.taiga.io/project/penpot/issue/10774)
|
- Fix duplicating pages with mainInstance shapes nested inside groups [Taiga #10774](https://tree.taiga.io/project/penpot/issue/10774)
|
||||||
|
|
||||||
|
## 2.8.1 (Unreleased)
|
||||||
|
|
||||||
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Fix unexpected exception on processing old texts [Github #6889](https://github.com/penpot/penpot/pull/6889)
|
||||||
|
|
||||||
## 2.8.0
|
## 2.8.0
|
||||||
|
|
||||||
### :rocket: Epics and highlights
|
### :rocket: Epics and highlights
|
||||||
|
|||||||
@ -245,4 +245,4 @@
|
|||||||
|
|
||||||
(defn event
|
(defn event
|
||||||
[props]
|
[props]
|
||||||
(ptk/data-event ::events props))
|
(ptk/data-event ::event props))
|
||||||
|
|||||||
@ -479,7 +479,7 @@
|
|||||||
;; We don't have the fills attribute. It's an old text without color
|
;; We don't have the fills attribute. It's an old text without color
|
||||||
;; so need to be black
|
;; so need to be black
|
||||||
(and (nil? (:fills node)) (empty? color-attrs))
|
(and (nil? (:fills node)) (empty? color-attrs))
|
||||||
(update :fills conj txt/default-text-attrs)
|
(assoc :fills (:fills txt/default-text-attrs))
|
||||||
|
|
||||||
;; Remove duplicates from the fills
|
;; Remove duplicates from the fills
|
||||||
:always
|
:always
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user