From 7129eaa1f24a1287a5a071b6718a859b32000f85 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Thu, 11 Jan 2024 12:38:20 -0600 Subject: keyboard: fix type of wlr_keyboard_modifiers.group This isn't a breaking change since both of these typedefs are uint32_t but this should make things a bit less confusing for readers. --- include/wlr/types/wlr_keyboard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/wlr') diff --git a/include/wlr/types/wlr_keyboard.h b/include/wlr/types/wlr_keyboard.h index abc4edf6..90464936 100644 --- a/include/wlr/types/wlr_keyboard.h +++ b/include/wlr/types/wlr_keyboard.h @@ -45,7 +45,7 @@ struct wlr_keyboard_modifiers { xkb_mod_mask_t depressed; xkb_mod_mask_t latched; xkb_mod_mask_t locked; - xkb_mod_mask_t group; + xkb_layout_index_t group; }; struct wlr_keyboard { -- cgit v1.2.3