mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
Add basic drawing tablet support to rootston
This commit is contained in:
parent
933cffaa8d
commit
f2ea691b93
3 changed files with 5 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ static void input_add_notify(struct wl_listener *listener, void *data) {
|
|||
//touch_add(device, input);
|
||||
break;
|
||||
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
||||
//tablet_tool_add(device, input);
|
||||
tablet_tool_add(device, input);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
@ -61,7 +61,7 @@ static void input_remove_notify(struct wl_listener *listener, void *data) {
|
|||
//touch_remove(device, input);
|
||||
break;
|
||||
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
||||
//tablet_tool_remove(device, input);
|
||||
tablet_tool_remove(device, input);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ executable(
|
|||
'main.c',
|
||||
'output.c',
|
||||
'pointer.c',
|
||||
'tablet_tool.c',
|
||||
'xdg_shell_v6.c',
|
||||
'xwayland.c',
|
||||
'wl_shell.c',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue