}
String factType = factsCombo.getItemText(factsCombo.getSelectedIndex());
String fieldName = fieldsCombo.getItemText(fieldsCombo.getSelectedIndex());
CustomFormConfiguration newCustomFormConfiguration = CustomFormsContainer.getEmptyCustomFormConfiguration();
newCustomFormConfiguration.setFactType(factType);
newCustomFormConfiguration.setFieldName(fieldName);
newCustomFormConfiguration.setCustomFormURL(customFormURL.getText());
newCustomFormConfiguration.setCustomFormWidth(w);
newCustomFormConfiguration.setCustomFormHeight(h);
workingSetEditor.getCustomFormsContainer().putCustomForm(newCustomFormConfiguration);
((WorkingSetConfigData) workingSet.getContent()).customForms = workingSetEditor.getCustomFormsContainer().getCustomForms();
}
});