Skip to content

Commit 9b05a77

Browse files
committed
Fix issue #17
Also change red/blue to pure rgb colors
1 parent b4dc072 commit 9b05a77

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/window_interface/Tag_Analysis/TagPileupWindow.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ public void actionPerformed(ActionEvent arg0) {
597597
btnSenseColor.setForeground(JColorChooser.showDialog(btnSenseColor, "Select an Output Color", btnSenseColor.getForeground()));
598598
}
599599
});
600-
btnSenseColor.setForeground(Color.BLUE);
600+
btnSenseColor.setForeground(new Color(0, 0, 255));
601601
sl_contentPane.putConstraint(SpringLayout.WEST, btnSenseColor, 50, SpringLayout.WEST, contentPane);
602602
contentPane.add(btnSenseColor);
603603

@@ -607,7 +607,7 @@ public void actionPerformed(ActionEvent e) {
607607
btnAntiColor.setForeground(JColorChooser.showDialog(btnAntiColor, "Select an Output Color", btnAntiColor.getForeground()));
608608
}
609609
});
610-
btnAntiColor.setForeground(Color.RED);
610+
btnAntiColor.setForeground(new Color(255, 0, 0));
611611
sl_contentPane.putConstraint(SpringLayout.NORTH, btnAntiColor, 0, SpringLayout.NORTH, btnSenseColor);
612612
sl_contentPane.putConstraint(SpringLayout.WEST, btnAntiColor, 75, SpringLayout.EAST, btnSenseColor);
613613
contentPane.add(btnAntiColor);
@@ -619,7 +619,7 @@ public void actionPerformed(ActionEvent e) {
619619
}
620620
});
621621
btnCombinedColor.setEnabled(false);
622-
btnCombinedColor.setForeground(new Color(0, 100, 0));
622+
btnCombinedColor.setForeground(new Color(0, 0, 0));
623623
sl_contentPane.putConstraint(SpringLayout.NORTH, btnCombinedColor, 0, SpringLayout.NORTH, btnSenseColor);
624624
sl_contentPane.putConstraint(SpringLayout.WEST, btnCombinedColor, 75, SpringLayout.EAST, btnAntiColor);
625625
contentPane.add(btnCombinedColor);

0 commit comments

Comments
 (0)