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
Simon Ser 2 years ago committed by Simon Zeni
parent bc8260f377
commit e93ecc669c

@ -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 {

Loading…
Cancel
Save