Comment out code that causes segfaults on some GTK setups. It is unclear as to what it is meant to be doing, as it refers to non-existant widgets.

svn path=/trunk/netsurf/; revision=4763
This commit is contained in:
Rob Kendrick 2008-07-26 22:35:09 +00:00
parent 5f6c2cbff7
commit afb3364151

View File

@ -1294,8 +1294,11 @@ static void nsgtk_scaffolding_enable_edit_actions_sensitivity
widget = glade_xml_get_widget_prefix(xml, "paste")->data;
gtk_widget_set_sensitive (widget, TRUE);
gtk_widget_show(widget);
/* This widget does not exist in the glade file. Which
* was intended?
widget = glade_xml_get_widget(xml, "separator");
gtk_widget_show(widget);
*/
}