tablet-tool: revert bitfield in enum wlr_tablet_tool_tip_state

This was changed to a bitfield by mistake.

References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3484#note_1697926
This commit is contained in:
Simon Ser 2022-12-26 11:49:41 +01:00 committed by Simon Zeni
parent bc8260f377
commit e93ecc669c
1 changed files with 2 additions and 2 deletions

View File

@ -123,8 +123,8 @@ struct wlr_tablet_tool_proximity_event {
};
enum wlr_tablet_tool_tip_state {
WLR_TABLET_TOOL_TIP_UP = 1 << 0,
WLR_TABLET_TOOL_TIP_DOWN = 1 << 1,
WLR_TABLET_TOOL_TIP_UP,
WLR_TABLET_TOOL_TIP_DOWN,
};
struct wlr_tablet_tool_tip_event {