From 53574d3a0d18563edb7888a8f530b02603ec1b45 Mon Sep 17 00:00:00 2001 From: Maxim Kartashev Date: Mon, 20 Jan 2025 14:46:31 +0400 Subject: [PATCH] JBR-8133 Runtime crash after jfr drag and drop to IU --- src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c b/src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c index 5e17f3950a89..d7ca9590a7fc 100644 --- a/src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c +++ b/src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c @@ -134,13 +134,13 @@ data_device_handle_drop(void *data, struct wl_data_device *wl_data_device) { // TODO } - static const struct wl_data_device_listener wl_data_device_listener = { .data_offer = data_device_handle_data_offer, .selection = data_device_handle_selection, .enter = data_device_handle_enter, .leave = data_device_handle_leave, - .motion = data_device_handle_motion + .motion = data_device_handle_motion, + .drop = data_device_handle_drop }; static void