aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-12-04 15:53:57 +0100
committerSimon Ser <contact@emersion.fr>2023-12-13 10:11:35 +0100
commit7ad8c80bfe020f2689b049306f5c0a6fe6ff622d (patch)
tree50506020329f084ee6d3e19347b2383361eff564
parentdbd70faf2e0a8115f681995801fd4b82f4682604 (diff)
input/{keyboard,switch}: rename input_inhibited variable to locked
This is more descriptive now.
-rw-r--r--sway/input/keyboard.c14
-rw-r--r--sway/input/switch.c8
2 files changed, 11 insertions, 11 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c
index 577ec9f5..dea7a7bd 100644
--- a/sway/input/keyboard.c
+++ b/sway/input/keyboard.c
@@ -405,7 +405,7 @@ static void handle_key_event(struct sway_keyboard *keyboard,
char *device_identifier = input_device_get_identifier(wlr_device);
bool exact_identifier = keyboard->wlr->group != NULL;
seat_idle_notify_activity(seat, IDLE_SOURCE_KEYBOARD);
- bool input_inhibited = server.session_lock.locked;
+ bool locked = server.session_lock.locked;
struct sway_keyboard_shortcuts_inhibitor *sway_inhibitor =
keyboard_shortcuts_inhibitor_get_for_focused_surface(seat);
bool shortcuts_inhibited = sway_inhibitor && sway_inhibitor->inhibitor->active;
@@ -423,17 +423,17 @@ static void handle_key_event(struct sway_keyboard *keyboard,
struct sway_binding *binding_released = NULL;
get_active_binding(&keyboard->state_keycodes,
config->current_mode->keycode_bindings, &binding_released,
- keyinfo.code_modifiers, true, input_inhibited,
+ keyinfo.code_modifiers, true, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
get_active_binding(&keyboard->state_keysyms_raw,
config->current_mode->keysym_bindings, &binding_released,
- keyinfo.raw_modifiers, true, input_inhibited,
+ keyinfo.raw_modifiers, true, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
get_active_binding(&keyboard->state_keysyms_translated,
config->current_mode->keysym_bindings, &binding_released,
- keyinfo.translated_modifiers, true, input_inhibited,
+ keyinfo.translated_modifiers, true, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
@@ -455,17 +455,17 @@ static void handle_key_event(struct sway_keyboard *keyboard,
if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
get_active_binding(&keyboard->state_keycodes,
config->current_mode->keycode_bindings, &binding,
- keyinfo.code_modifiers, false, input_inhibited,
+ keyinfo.code_modifiers, false, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
get_active_binding(&keyboard->state_keysyms_raw,
config->current_mode->keysym_bindings, &binding,
- keyinfo.raw_modifiers, false, input_inhibited,
+ keyinfo.raw_modifiers, false, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
get_active_binding(&keyboard->state_keysyms_translated,
config->current_mode->keysym_bindings, &binding,
- keyinfo.translated_modifiers, false, input_inhibited,
+ keyinfo.translated_modifiers, false, locked,
shortcuts_inhibited, device_identifier,
exact_identifier, keyboard->effective_layout);
}
diff --git a/sway/input/switch.c b/sway/input/switch.c
index 32d9c7e0..f483cd23 100644
--- a/sway/input/switch.c
+++ b/sway/input/switch.c
@@ -33,8 +33,8 @@ static bool sway_switch_trigger_test(enum sway_switch_trigger trigger,
}
static void execute_binding(struct sway_switch *sway_switch) {
- struct sway_seat* seat = sway_switch->seat_device->sway_seat;
- bool input_inhibited = server.session_lock.locked;
+ struct sway_seat *seat = sway_switch->seat_device->sway_seat;
+ bool locked = server.session_lock.locked;
list_t *bindings = config->current_mode->switch_bindings;
struct sway_switch_binding *matched_binding = NULL;
@@ -51,13 +51,13 @@ static void execute_binding(struct sway_switch *sway_switch) {
continue;
}
bool binding_locked = binding->flags & BINDING_LOCKED;
- if (!binding_locked && input_inhibited) {
+ if (!binding_locked && locked) {
continue;
}
matched_binding = binding;
- if (binding_locked == input_inhibited) {
+ if (binding_locked == locked) {
break;
}
}