XAlignedComponentPanel shellPanel = new XAlignedComponentPanel();
shellPanel.setLabelLeftAligned(true);
shellPanel.setBorder(BorderFactory.createTitledBorder(Translator.get("prefs_dialog.shell")));
// Create a path field with auto-completion capabilities
customShellField = new PrefFilePathField(MuConfigurations.getPreferences().getVariable(MuPreference.CUSTOM_SHELL, "")) {
public boolean hasChanged() {
return isEnabled() && !getText().equals(MuConfigurations.getPreferences().getVariable(MuPreference.CUSTOM_SHELL));
}
};
customShellField.setEnabled(useCustomShellRadioButton.isSelected());