-
Bug
-
Resolution: Fixed
-
P3
-
jfx14
on gladd_dnd.cpp:
#if GTK_CHECK_VERSION(3, 10, 0)
context = gtk_drag_begin_with_coordinates(drag_widget, tlist, actions, 1, NULL, x, y);
#else
context = gtk_drag_begin(drag_widget, tlist, actions, 1, NULL);
#endif
This will break if run on previous Gtk than 3.10.0.
#if GTK_CHECK_VERSION(3, 10, 0)
context = gtk_drag_begin_with_coordinates(drag_widget, tlist, actions, 1, NULL, x, y);
#else
context = gtk_drag_begin(drag_widget, tlist, actions, 1, NULL);
#endif
This will break if run on previous Gtk than 3.10.0.
- relates to
-
JDK-8225571 Port Linux glass drag source (DND) to use gtk instead of gdk
- Resolved