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
Basically slurp segfaults in some situations because it gets an event about key modifiers (wl_keyboard.modifiers) before it has received a keymap (wl_keyboard.keymap). Since it hasn't received a keymap yet, it doesn't know how to handle the modifiers event.
The following is an exceprt from the WL_DEBUG output for slurp:
tmccombs
changed the title
Sway sends wl_keybaord modifiers event before sending keymap
Sway sends wl_keyboard modifiers event before sending keymap
May 21, 2024
Sway Version:
Description:
See emersion/slurp#123 and emersion/slurp#124
Basically slurp segfaults in some situations because it gets an event about key modifiers (wl_keyboard.modifiers) before it has received a keymap (wl_keyboard.keymap). Since it hasn't received a keymap yet, it doesn't know how to handle the modifiers event.
The following is an exceprt from the WL_DEBUG output for slurp:
no
keymap
event is received prior to this.What should probably happens is sway makes sure that a
keymap
has been sent to the application before sending theenter
event.The text was updated successfully, but these errors were encountered: