Use focused background color for combo popups.

This commit is contained in:
Christopher Deckers
2021-06-08 14:19:17 +02:00
parent 26250e790f
commit b99fb8b11f

View File

@@ -702,6 +702,9 @@ public class FlatComboBoxUI
super.configureList(); super.configureList();
list.setCellRenderer( new PopupListCellRenderer() ); list.setCellRenderer( new PopupListCellRenderer() );
if( focusedBackground != null ) {
list.setBackground( focusedBackground );
}
} }
@Override @Override