From a2ec576f5a8edbbd76905c0d7654a76056759050 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Wed, 6 Jun 2018 21:32:28 +1000 Subject: [PATCH] Fix display of the "verifying" message in swaylock. --- swaylock/password.c | 1 + 1 file changed, 1 insertion(+) diff --git a/swaylock/password.c b/swaylock/password.c index 6d493309c..8156dde3d 100644 --- a/swaylock/password.c +++ b/swaylock/password.c @@ -97,6 +97,7 @@ void swaylock_handle_key(struct swaylock_state *state, case XKB_KEY_Return: state->auth_state = AUTH_STATE_VALIDATING; damage_state(state); + wl_display_dispatch(state->display); wl_display_roundtrip(state->display); if (attempt_password(&state->password)) { state->run_display = false;