From e5e651af7fcd21aa7c24cb47a1fe11fa8b85ac10 Mon Sep 17 00:00:00 2001 From: Simon Long Date: Wed, 5 Jun 2024 09:51:38 +0100 Subject: [PATCH] Change for new session lock --- src/input/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/keyboard.c b/src/input/keyboard.c index a709675f..ce02ec15 100644 --- a/src/input/keyboard.c +++ b/src/input/keyboard.c @@ -412,7 +412,7 @@ handle_compositor_keybindings(struct keyboard *keyboard, if (cur_keybind && cur_keybind->on_release) { key_state_bound_key_remove(event->keycode); if (seat->active_client_while_inhibited - || seat->server->session_lock) { + || seat->server->session_lock_manager->locked) { cur_keybind = NULL; return true; }