mirror of
https://github.com/penpot/penpot.git
synced 2025-02-15 11:38:24 -05:00
🐛 Fix border radious on boolean operations
This commit is contained in:
parent
7325322ebf
commit
d16761772b
2 changed files with 4 additions and 1 deletions
|
@ -35,6 +35,7 @@
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Fix border radious on boolean operations [Taiga](https://tree.taiga.io/project/penpot/issue/3959)
|
||||||
- Fix inconsistent representation of rectangles [Taiga #3977](https://tree.taiga.io/project/penpot/issue/3977)
|
- Fix inconsistent representation of rectangles [Taiga #3977](https://tree.taiga.io/project/penpot/issue/3977)
|
||||||
- Fix recent fonts info [Taiga #3953](https://tree.taiga.io/project/penpot/issue/3953)
|
- Fix recent fonts info [Taiga #3953](https://tree.taiga.io/project/penpot/issue/3953)
|
||||||
- Fix clipped elements affect boards and centering [Taiga #3666](https://tree.taiga.io/project/penpot/issue/3666)
|
- Fix clipped elements affect boards and centering [Taiga #3666](https://tree.taiga.io/project/penpot/issue/3666)
|
||||||
|
|
|
@ -174,7 +174,9 @@
|
||||||
(fn [shape]
|
(fn [shape]
|
||||||
(if (ctsr/has-radius? shape)
|
(if (ctsr/has-radius? shape)
|
||||||
(update-fn shape)
|
(update-fn shape)
|
||||||
shape)))))
|
shape))
|
||||||
|
{:reg-objects? true
|
||||||
|
:attrs [:rx :ry :r1 :r2 :r3 :r4]})))
|
||||||
|
|
||||||
on-switch-to-radius-1
|
on-switch-to-radius-1
|
||||||
(mf/use-callback
|
(mf/use-callback
|
||||||
|
|
Loading…
Add table
Reference in a new issue