0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 14:39:45 -05:00

🐛 Fix gradient handlers are under resize handlers

This commit is contained in:
Pablo Alba 2022-10-13 12:55:32 +02:00
parent 9e6f12cb82
commit 1e07c16633
2 changed files with 7 additions and 6 deletions

View file

@ -42,6 +42,7 @@
- Fix inviting to non existing users can fail [Taiga #4108](https://tree.taiga.io/project/penpot/issue/4108)
- Fix components marked as touched when moved [Taiga #4061](https://tree.taiga.io/project/penpot/task/4061)
- Fix boards grouped shouldn't show the title [Taiga #4251](https://tree.taiga.io/project/penpot/issue/4251)
- Fix gradient handlers are under resize handlers[Taiga #4298](https://tree.taiga.io/project/penpot/issue/4298)
### :arrow_up: Deps updates
### :heart: Community contributions by (Thank you!)

View file

@ -337,11 +337,6 @@
:on-frame-leave on-frame-leave
:on-frame-select on-frame-select}])
(when show-gradient-handlers?
[:& gradients/gradient-handlers
{:id (first selected)
:zoom zoom}])
(when show-draw-area?
[:& drawarea/draw-area
{:shape drawing-obj
@ -441,4 +436,9 @@
:zoom zoom
:objects objects-modified
:current-transform transform
:hover-disabled? hover-disabled?}])])]]]))
:hover-disabled? hover-disabled?}])])
(when show-gradient-handlers?
[:& gradients/gradient-handlers
{:id (first selected)
:zoom zoom}])]]]))