mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
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:
parent
bc8260f377
commit
e93ecc669c
1 changed files with 2 additions and 2 deletions
|
@ -123,8 +123,8 @@ struct wlr_tablet_tool_proximity_event {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum wlr_tablet_tool_tip_state {
|
enum wlr_tablet_tool_tip_state {
|
||||||
WLR_TABLET_TOOL_TIP_UP = 1 << 0,
|
WLR_TABLET_TOOL_TIP_UP,
|
||||||
WLR_TABLET_TOOL_TIP_DOWN = 1 << 1,
|
WLR_TABLET_TOOL_TIP_DOWN,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct wlr_tablet_tool_tip_event {
|
struct wlr_tablet_tool_tip_event {
|
||||||
|
|
Loading…
Reference in a new issue