Enable delete button for editable combo boxes.

cusax-fix
Yana Stamcheva 17 years ago
parent e1f64fcae1
commit 45288c7024

@ -19,11 +19,19 @@
* @author Yana Stamcheva
*/
public class SIPCommComboBoxEditor extends MetalComboBoxEditor {
public SIPCommComboBoxEditor() {
public SIPCommComboBoxEditor()
{
super();
editor.setBorder(new EditorBorder());
editor.setBorder(new EditorBorder());
// enables delete button
if (editor.getUI() instanceof SIPCommTextFieldUI)
{
((SIPCommTextFieldUI) editor.getUI())
.setDeleteButtonEnabled(true);
}
}
protected static Insets editorBorderInsets

Loading…
Cancel
Save