Linux: Iron out a few issues with the configuration dialog in Linux.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1122 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-05-02 14:36:46 +00:00
parent 74ebe985f6
commit a65543399c
1 changed files with 3 additions and 4 deletions

View File

@ -157,10 +157,9 @@ void OnConfButton(GtkButton *button, gpointer user_data)
plugin_types type = strToPluginType(name);
plugin_callback call = strToPluginCall(name);
// Don't uncomment till fixing CDVDIso's dialog box.
//gtk_widget_set_sensitive(ConfDlg, FALSE);
ConfPlugin(type, call, false);
//gtk_widget_set_sensitive(ConfDlg, TRUE);
gtk_widget_set_sensitive(ConfDlg, FALSE);
ConfPlugin(type, call, true);
gtk_widget_set_sensitive(ConfDlg, TRUE);
}
void SetComboToGList(GtkComboBox *widget, GList *list)