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
Currently we are handling backspace/delete key events in widget plugin: when selection is directly after the widget, backspace key selects entire widget (similar with delete key and selection just before widget).
Instead of listening to key events we should use delete event from DeleteObserver (which is handling key events internally). This is because delete event can be triggered by other input events than key press (IME for example).
The text was updated successfully, but these errors were encountered:
Currently we are handling backspace/delete key events in widget plugin: when selection is directly after the widget, backspace key selects entire widget (similar with delete key and selection just before widget).
Instead of listening to key events we should use
delete
event fromDeleteObserver
(which is handling key events internally). This is becausedelete
event can be triggered by other input events than key press (IME for example).The text was updated successfully, but these errors were encountered: