mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
types/wlr_tablet_tool: remove name ambiguity
It wasn't clear in the backend whether to use name or base.name, change it so base.name has to be used. Fixes https://github.com/swaywm/sway/issues/6884
This commit is contained in:
parent
13fcdba75c
commit
7a2c96dcbd
3 changed files with 4 additions and 5 deletions
|
|
@ -836,8 +836,8 @@ static void handle_tablet_name(void *data, struct zwp_tablet_v2 *zwp_tablet_v2,
|
|||
struct wlr_wl_input_device *dev = data;
|
||||
struct wlr_tablet *tablet = dev->wlr_input_device.tablet;
|
||||
|
||||
free(tablet->name);
|
||||
tablet->name = strdup(name);
|
||||
free(tablet->base.name);
|
||||
tablet->base.name = strdup(name);
|
||||
}
|
||||
|
||||
static void handle_tablet_id(void *data, struct zwp_tablet_v2 *zwp_tablet_v2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue