Recolour config names to white

To keep consistency with the config list names, I changed the color
of the specific configurations and titles to white.
This commit is contained in:
Ruben Amendoeira
2018-05-22 19:42:42 +01:00
parent b85ca418db
commit 18d600b298

View File

@@ -409,6 +409,7 @@ public class ConfigPanel extends PluginPanel
removeAll();
String name = cd.getGroup().name() + " Configuration";
JLabel title = new JLabel(name);
title.setForeground(Color.WHITE);
title.setToolTipText(cd.getGroup().description());
add(title, SwingConstants.CENTER);
@@ -423,6 +424,7 @@ public class ConfigPanel extends PluginPanel
item.setLayout(new BorderLayout());
name = cid.getItem().name();
JLabel configEntryName = new JLabel(name);
configEntryName.setForeground(Color.WHITE);
configEntryName.setToolTipText("<html>" + name + ":<br>" + cid.getItem().description() + "</html>");
item.add(configEntryName, BorderLayout.CENTER);