Skip to content

Commit

Permalink
key-state: rename function for consistency
Browse files Browse the repository at this point in the history
...with the equivalent function that returns the number of pressed keys.

s/key_state_nr_keys/key_state_nr_bound_keys/
  • Loading branch information
johanmalm committed Sep 30, 2023
1 parent 4b88765 commit 1916333
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/key-state.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void key_state_set_pressed(uint32_t keycode, bool ispressed);
void key_state_store_pressed_keys_as_bound(void);
bool key_state_corresponding_press_event_was_bound(uint32_t keycode);
void key_state_bound_key_remove(uint32_t keycode);
int key_state_nr_keys(void);
int key_state_nr_bound_keys(void);
int key_state_nr_pressed_keys(void);

#endif /* LABWC_KEY_STATE_H */
2 changes: 1 addition & 1 deletion src/key-state.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ key_state_bound_key_remove(uint32_t keycode)
}

int
key_state_nr_keys(void)
key_state_nr_bound_keys(void)
{
return bound.nr_keys;
}
Expand Down
2 changes: 1 addition & 1 deletion src/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ keyboard_modifiers_notify(struct wl_listener *listener, void *data)
|| seat->workspace_osd_shown_by_modifier) {
if (!keyboard_any_modifiers_pressed(wlr_keyboard)) {
if (server->osd_state.cycle_view) {
if (key_state_nr_keys()) {
if (key_state_nr_bound_keys()) {
should_cancel_cycling_on_next_key_release = true;
} else {
end_cycling(server);
Expand Down

0 comments on commit 1916333

Please sign in to comment.