Skip to content

Commit

Permalink
Merge pull request #4251 from IllianiCBT/campaignOptions_fixedMapStep…
Browse files Browse the repository at this point in the history
…Size

Adjusted Step Size for Fixed Map Chance AtB Option
  • Loading branch information
IllianiCBT authored Jun 21, 2024
2 parents 00ed497 + 24d745c commit 5371c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/gui/panes/CampaignOptionsPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -3195,7 +3195,7 @@ private JScrollPane createAgainstTheBotTab() {
JPanel panFixedMapChance = new JPanel();
JLabel lblFixedMapChance = new JLabel(resources.getString("lblFixedMapChance.text"));
lblFixedMapChance.setToolTipText(resources.getString("lblFixedMapChance.toolTipText"));
spnFixedMapChance = new JSpinner(new SpinnerNumberModel(0, 0, 100, 10));
spnFixedMapChance = new JSpinner(new SpinnerNumberModel(0, 0, 100, 1));
panFixedMapChance.add(lblFixedMapChance);
panFixedMapChance.add(spnFixedMapChance);
gridBagConstraints.gridx = 0;
Expand Down

0 comments on commit 5371c6c

Please sign in to comment.