mirror of
https://github.com/penpot/penpot.git
synced 2025-03-11 07:11:32 -05:00
🐛 Fix close colorpicker on Firefox when mouse-up is outside the picker
This commit is contained in:
parent
b6e01077ed
commit
dad88cb42e
2 changed files with 2 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
||||||
- Fix unlink library color when blur color picker input [#3026](https://github.com/penpot/penpot/issues/3026)
|
- Fix unlink library color when blur color picker input [#3026](https://github.com/penpot/penpot/issues/3026)
|
||||||
- Fix snap pixel when moving path points on high zoom [#2930](https://github.com/penpot/penpot/issues/2930)
|
- Fix snap pixel when moving path points on high zoom [#2930](https://github.com/penpot/penpot/issues/2930)
|
||||||
- Fix shortcuts for zoom now take into account the mouse position [#2924](https://github.com/penpot/penpot/issues/2924)
|
- Fix shortcuts for zoom now take into account the mouse position [#2924](https://github.com/penpot/penpot/issues/2924)
|
||||||
|
- Fix close colorpicker on Firefox when mouse-up is outside the picker [#2911](https://github.com/penpot/penpot/issues/2911)
|
||||||
|
|
||||||
### :heart: Community contributions by (Thank you!)
|
### :heart: Community contributions by (Thank you!)
|
||||||
- To @ondrejkonec: for contributing to the code with:
|
- To @ondrejkonec: for contributing to the code with:
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
(events/listen js/document EventType.KEYDOWN handle-keydown)
|
(events/listen js/document EventType.KEYDOWN handle-keydown)
|
||||||
|
|
||||||
;; Changing to js/document breaks the color picker
|
;; Changing to js/document breaks the color picker
|
||||||
(events/listen (dom/get-root) EventType.CLICK handle-click-outside)
|
(events/listen (dom/get-root) EventType.MOUSEDOWN handle-click-outside)
|
||||||
|
|
||||||
(events/listen js/document EventType.CONTEXTMENU handle-click-outside)]]
|
(events/listen js/document EventType.CONTEXTMENU handle-click-outside)]]
|
||||||
#(doseq [key keys]
|
#(doseq [key keys]
|
||||||
|
|
Loading…
Add table
Reference in a new issue