diff options
author | Markus Ongyerth <ongy@ongy.net> | 2018-05-17 15:21:20 +0200 |
---|---|---|
committer | Markus Ongyerth <ongy@ongy.net> | 2018-07-14 09:48:57 +0200 |
commit | dc525a9c5f65c30d67de21a5cfb0315c0997f756 (patch) | |
tree | 9eafe68b949d894ffaad8ac269a1dd9a34895c76 /include/wlr | |
parent | 25c28081531979141cff41fd689cb52ff269d712 (diff) |
Clean up serial handling and automate proximity acompaning events
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_tablet_v2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/wlr/types/wlr_tablet_v2.h b/include/wlr/types/wlr_tablet_v2.h index 18fafcc3..09f7454a 100644 --- a/include/wlr/types/wlr_tablet_v2.h +++ b/include/wlr/types/wlr_tablet_v2.h @@ -8,7 +8,7 @@ #include "tablet-unstable-v2-protocol.h" /* This can probably be even lower,the tools don't have a lot of buttons */ -#define WLR_TABLEt_V2_TOOL_BUTTONS_CAP 16 +#define WLR_TABLET_V2_TOOL_BUTTONS_CAP 16 struct wlr_tablet_client_v2; struct wlr_tablet_tool_client_v2; @@ -51,8 +51,8 @@ struct wlr_tablet_v2_tablet_tool { bool is_down; uint32_t down_serial; size_t num_buttons; - uint32_t pressed_buttons[WLR_TABLEt_V2_TOOL_BUTTONS_CAP]; - uint32_t pressed_serials[WLR_TABLEt_V2_TOOL_BUTTONS_CAP]; + uint32_t pressed_buttons[WLR_TABLET_V2_TOOL_BUTTONS_CAP]; + uint32_t pressed_serials[WLR_TABLET_V2_TOOL_BUTTONS_CAP]; struct { struct wl_signal set_cursor; // struct wlr_tablet_v2_event_cursor |