Skip to content

Commit

Permalink
JBR-8133 Runtime crash after jfr drag and drop to IU
Browse files Browse the repository at this point in the history
  • Loading branch information
mkartashev committed Jan 21, 2025
1 parent e675f82 commit 53574d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java.desktop/unix/native/libawt_wlawt/WLClipboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53574d3

Please sign in to comment.