input: rename drawing_tablet to tablet

This commit is contained in:
Jens Peters 2023-12-29 10:10:41 +01:00 committed by Johan Malm
parent 5a93aa3a78
commit 20bba35570
4 changed files with 9 additions and 9 deletions

View file

@ -9,7 +9,7 @@
#include <wlr/types/wlr_touch.h>
#include <wlr/util/log.h>
#include "common/mem.h"
#include "input/drawing_tablet.h"
#include "input/tablet.h"
#include "input/input.h"
#include "input/keyboard.h"
#include "input/key-state.h"
@ -270,7 +270,7 @@ new_tablet(struct seat *seat, struct wlr_input_device *dev)
{
struct input *input = znew(*input);
input->wlr_input_device = dev;
drawing_tablet_setup_handlers(seat, dev);
tablet_setup_handlers(seat, dev);
return input;
}