From 9877189ea3574625e165202c61a497bdaeb46656 Mon Sep 17 00:00:00 2001 From: Milkey Mouse Date: Thu, 20 Dec 2018 12:19:21 -0800 Subject: swaylock: Clear password buffer on Ctrl-C I've got in the habit of using Ctrl-C with login(1) to restart password entry. If Sway does the same thing I don't have to retrain my login muscle memory ;) --- swaylock/password.c | 1 + 1 file changed, 1 insertion(+) diff --git a/swaylock/password.c b/swaylock/password.c index db8ecaeb..44244519 100644 --- a/swaylock/password.c +++ b/swaylock/password.c @@ -165,6 +165,7 @@ void swaylock_handle_key(struct swaylock_state *state, schedule_indicator_clear(state); schedule_password_clear(state); break; + case XKB_KEY_c: /* fallthrough */ case XKB_KEY_u: if (state->xkb.control) { clear_password_buffer(&state->password); -- cgit v1.2.3-54-g00ecf