1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-22 15:58:52 -05:00

Use the Nimbus Dark Blue as List/ComboBox selection color for Darcula LaF (the default blue is too bright)

This commit is contained in:
Reinhard Pointner 2019-02-25 18:47:03 +07:00
parent 08ba94d2f3
commit 88ae911c4f

View File

@ -96,6 +96,8 @@ public class ThemeSupport {
@Override
public void setLookAndFeel() throws Exception {
UIManager.setLookAndFeel(new DarculaLaf());
UIManager.put("List.selectionBackground", new Color(0x39698a));
UIManager.put("ComboBox.selectionBackground", new Color(0x39698a));
}
@Override