From a28167c255b25bdcca2f7c85dd78528265652679 Mon Sep 17 00:00:00 2001 From: emersion Date: Wed, 12 Dec 2018 11:24:32 +0100 Subject: [PATCH] data-control-v1: allow clearing selection --- types/wlr_data_control_v1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/wlr_data_control_v1.c b/types/wlr_data_control_v1.c index 5f7b2df5..8d8247de 100644 --- a/types/wlr_data_control_v1.c +++ b/types/wlr_data_control_v1.c @@ -178,12 +178,13 @@ static void control_handle_set_selection(struct wl_client *client, struct wlr_data_control_v1 *control = control_from_resource(control_resource); struct client_data_source *source = source_from_resource(source_resource); - if (control == NULL || source == NULL) { + if (control == NULL) { return; } + struct wlr_data_source *wlr_source = source ? &source->source : NULL; struct wl_display *display = wl_client_get_display(client); - wlr_seat_set_selection(control->seat, &source->source, + wlr_seat_set_selection(control->seat, wlr_source, wl_display_next_serial(display)); }