mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
clear swaylock password buffer with esc
for i3lock compatibility
This commit is contained in:
parent
ac4213a136
commit
06e06f9af2
|
@ -162,11 +162,12 @@ void notify_key(enum wl_keyboard_key_state state, xkb_keysym_t sym, uint32_t cod
|
||||||
// don't draw screen on modifier keys
|
// don't draw screen on modifier keys
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case XKB_KEY_Escape: // fallthrough
|
||||||
case XKB_KEY_u: // fallthrough
|
case XKB_KEY_u: // fallthrough
|
||||||
case XKB_KEY_U:
|
case XKB_KEY_U:
|
||||||
{
|
{
|
||||||
// clear password buffer on ctrl-u
|
// clear password buffer on ctrl-u (or escape for i3lock compatibility)
|
||||||
if (xkb_state_mod_name_is_active(registry->input->xkb.state,
|
if (sym == XKB_KEY_Escape || xkb_state_mod_name_is_active(registry->input->xkb.state,
|
||||||
XKB_MOD_NAME_CTRL, XKB_STATE_MODS_EFFECTIVE) > 0) {
|
XKB_MOD_NAME_CTRL, XKB_STATE_MODS_EFFECTIVE) > 0) {
|
||||||
render_data.auth_state = AUTH_STATE_BACKSPACE;
|
render_data.auth_state = AUTH_STATE_BACKSPACE;
|
||||||
redraw_screen = 1;
|
redraw_screen = 1;
|
||||||
|
|
Loading…
Reference in a new issue