Revert "Widget: Remove obsolete hack-arounds for HandleBox"

This reverts commit 12805a4fbf.

I must have been looking at the wrong tree because HandleBox is only
deprecated in GTK+ 3, not removed.
This commit is contained in:
Daniel Boles
2017-08-07 19:38:12 +01:00
parent cf955a5459
commit 4ce5bed724

View File

@@ -6321,6 +6321,9 @@ gtk_widget_translate_coordinates (GtkWidget *src_widget,
src_y = dy;
window = gdk_window_get_effective_parent (window);
if (!window) /* Handle GtkHandleBox */
return FALSE;
}
/* And back */
@@ -6330,6 +6333,12 @@ gtk_widget_translate_coordinates (GtkWidget *src_widget,
dest_list = g_list_prepend (dest_list, window);
window = gdk_window_get_effective_parent (window);
if (!window) /* Handle GtkHandleBox */
{
g_list_free (dest_list);
return FALSE;
}
}
while (dest_list)