You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UI issue reported by @Revathigb diagnosed as follows:
The grid.canvas.currentKeys array is fossilized at last key event received by canvas when it last had focus. When accessed later, some key modifiers may no longer be in the same as they were (e.g., when keys went up or down while canvas blurred).
A reference to grid.canvas.currentKeys is passed to mouse event handlers as e.detail.keys and a copy of this array is passed to keyboard event handlers as e.detail.currentKeys.
These properties need to be getters that update grid.canvas.currentKeys with modifier key states reported in the current mouse event before returning the reference or copy.
The text was updated successfully, but these errors were encountered:
UI issue reported by @Revathigb diagnosed as follows:
The
grid.canvas.currentKeys
array is fossilized at last key event received by canvas when it last had focus. When accessed later, some key modifiers may no longer be in the same as they were (e.g., when keys went up or down while canvas blurred).A reference to
grid.canvas.currentKeys
is passed to mouse event handlers ase.detail.keys
and a copy of this array is passed to keyboard event handlers ase.detail.currentKeys
.These properties need to be getters that update
grid.canvas.currentKeys
with modifier key states reported in the current mouse event before returning the reference or copy.The text was updated successfully, but these errors were encountered: