Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Paid Retirement Color Options #4457

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions MekHQ/src/mekhq/gui/dialog/MHQOptionsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ public class MHQOptionsDialog extends AbstractMHQButtonDialog {
private ColourSelectorButton optionHealedInjuriesBackground;
private ColourSelectorButton optionPregnantForeground;
private ColourSelectorButton optionPregnantBackground;
private ColourSelectorButton optionPaidRetirementForeground;
private ColourSelectorButton optionPaidRetirementBackground;
private ColourSelectorButton optionStratConHexCoordForeground;
private ColourSelectorButton optionFontColorNegative;
private ColourSelectorButton optionFontColorWarning;
Expand Down Expand Up @@ -485,10 +483,6 @@ private JPanel createColoursTab() {

optionPregnantBackground = new ColourSelectorButton(resources.getString("optionPregnantBackground.text"));

optionPaidRetirementForeground = new ColourSelectorButton(resources.getString("optionPaidRetirementForeground.text"));

optionPaidRetirementBackground = new ColourSelectorButton(resources.getString("optionPaidRetirementBackground.text"));

optionStratConHexCoordForeground = new ColourSelectorButton(resources.getString("optionStratConHexCoordForeground.text"));

optionFontColorNegative = new ColourSelectorButton(resources.getString("optionFontColorNegative.text"));
Expand Down Expand Up @@ -554,9 +548,6 @@ private JPanel createColoursTab() {
.addGroup(layout.createParallelGroup(Alignment.BASELINE)
.addComponent(optionPregnantForeground)
.addComponent(optionPregnantBackground, Alignment.TRAILING))
.addGroup(layout.createParallelGroup(Alignment.BASELINE)
.addComponent(optionPaidRetirementForeground)
.addComponent(optionPaidRetirementBackground, Alignment.TRAILING))
.addGroup(layout.createParallelGroup(Alignment.BASELINE)
.addComponent(optionStratConHexCoordForeground))
.addGroup(layout.createParallelGroup(Alignment.BASELINE)
Expand Down Expand Up @@ -613,9 +604,6 @@ private JPanel createColoursTab() {
.addGroup(layout.createSequentialGroup()
.addComponent(optionPregnantForeground)
.addComponent(optionPregnantBackground))
.addGroup(layout.createSequentialGroup()
.addComponent(optionPaidRetirementForeground)
.addComponent(optionPaidRetirementBackground))
.addGroup(layout.createSequentialGroup()
.addComponent(optionStratConHexCoordForeground))
.addGroup(layout.createSequentialGroup()
Expand Down