diff options
author | emersion <contact@emersion.fr> | 2019-02-18 12:34:21 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-02-20 18:42:34 +0100 |
commit | d6de6404403679b42721e484609c31243447a6f3 (patch) | |
tree | 85c6b0332b6680f9ba555f58bbb8b95f6175113e /include | |
parent | 7d367a9e216431d4c80a1f7c57e246df02de3886 (diff) |
data-device: unbreak wl_data_source.cancel during drag-and-drop
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_data_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_data_device.h b/include/wlr/types/wlr_data_device.h index 9da7cc0d..256654e5 100644 --- a/include/wlr/types/wlr_data_device.h +++ b/include/wlr/types/wlr_data_device.h @@ -127,7 +127,7 @@ struct wlr_drag { struct wlr_surface *focus; // can be NULL struct wlr_data_source *source; // can be NULL - bool started, cancelling; + bool started, dropped, cancelling; int32_t grab_touch_id, touch_id; // if WLR_DRAG_GRAB_TOUCH struct { |