Widget: Remove obsolete hack-arounds for HandleBox

It is long gone. The commit c9d9db0fcc
identified these as ugly-but-functional workarounds for it, only.

https://bugzilla.gnome.org/show_bug.cgi?id=776909
This commit is contained in:
Daniel Boles 2017-08-07 16:54:20 +01:00 committed by Daniel Boles
parent 65b18a4fc1
commit 12805a4fbf

View File

@ -6321,9 +6321,6 @@ 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 */
@ -6333,12 +6330,6 @@ 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)