Merge branch 'fix-dnd-macos' into 'gtk-3-24'

quartz: Add missing g_object_ref

See merge request GNOME/gtk!768
This commit is contained in:
Matthias Clasen
2019-04-23 01:24:50 +00:00

View File

@@ -788,7 +788,8 @@ update_context_from_dragging_info (id <NSDraggingInfo> sender)
wh = gdk_window_get_height (win);
if (gx > wx && gy > wy && gx <= wx + ww && gy <= wy + wh)
event->dnd.context->dest_window = win;
event->dnd.context->dest_window = g_object_ref (win);
break;
}
}