diff options
author | Drew DeVault <[email protected]> | 2018-04-03 22:00:29 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2018-04-04 18:47:49 -0400 |
commit | 0138f79b4aae563e1223737856ab44c8634c76b0 (patch) | |
tree | 238b2e12cf0e3cbbbeec6e56ea3c37c58974b1f5 /swaylock/password.c | |
parent | d2d050d59cf19c583b100e6e3637ed9a06a8863f (diff) |
Move extra roundtrip into password.c
Diffstat (limited to 'swaylock/password.c')
-rw-r--r-- | swaylock/password.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swaylock/password.c b/swaylock/password.c index 2927a9a9..06c1180c 100644 --- a/swaylock/password.c +++ b/swaylock/password.c @@ -101,6 +101,7 @@ void swaylock_handle_key(struct swaylock_state *state, case XKB_KEY_Return: state->auth_state = AUTH_STATE_VALIDATING; render_frames(state); + wl_display_roundtrip(state->display); if (attempt_password(&state->password)) { exit(0); } |