mirror of
https://github.com/penpot/penpot.git
synced 2025-03-28 15:41:25 -05:00
🐛 Fix problem with space key stuck
This commit is contained in:
parent
ee4c56aa9b
commit
e2428fc0c6
2 changed files with 6 additions and 0 deletions
|
@ -127,6 +127,7 @@
|
|||
- Selected color affects all of them [Taiga #5285](https://tree.taiga.io/project/penpot/issue/5285)
|
||||
- Fix problem with shadow negative spread [Github #3421](https://github.com/penpot/penpot/issues/3421)
|
||||
- Fix problem with linked colors to strokes [Github #3522](https://github.com/penpot/penpot/issues/3522)
|
||||
- Fix problem with hand tool stuck [Github #3318](https://github.com/penpot/penpot/issues/3318)
|
||||
|
||||
|
||||
## 1.19.5
|
||||
|
|
|
@ -151,6 +151,11 @@
|
|||
(rx/filter kbd/space?)
|
||||
(rx/filter (complement kbd/editing-event?))
|
||||
(rx/map kbd/key-down-event?)
|
||||
;; Fix a situation caused by using `ctrl+alt` kind of
|
||||
;; shortcuts, that makes keyboard-alt stream
|
||||
;; registering the key pressed but on blurring the
|
||||
;; window (unfocus) the key down is never arrived.
|
||||
(rx/merge window-blur)
|
||||
(rx/pipe (rxo/distinct-contiguous)))]
|
||||
(rx/sub! ob sub)
|
||||
sub))
|
||||
|
|
Loading…
Add table
Reference in a new issue