Blame SOURCES/eclipse-bug-903537.patch

10f0d1
--- eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java.bak	2013-01-28 12:16:08.000000000 +0100
10f0d1
+++ eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java	2013-02-19 13:22:29.529926456 +0100
10f0d1
@@ -4439,7 +4439,12 @@
10f0d1
 		oldDecorations.fixAccelGroup ();
10f0d1
 	}
10f0d1
 	long /*int*/ newParent = parent.parentingHandle();
10f0d1
-	OS.gtk_widget_reparent(topHandle, newParent);
10f0d1
+//	OS.gtk_widget_reparent(topHandle, newParent);
10f0d1
+	OS.g_object_ref(topHandle);
10f0d1
+	OS.gtk_container_remove(OS.gtk_widget_get_parent(topHandle), topHandle);
10f0d1
+	OS.gtk_container_add(newParent, topHandle);
10f0d1
+	OS.g_object_unref(topHandle);
10f0d1
+	
10f0d1
 	if (OS.GTK3) {
10f0d1
 		OS.swt_fixed_move (newParent, topHandle, x, y);
10f0d1
 	} else {