Skip to content

Commit

Permalink
Merge pull request #1519 from repligator/master
Browse files Browse the repository at this point in the history
Added a missing "(resourceMap.getString", fixing a tooltip
  • Loading branch information
IllianiCBT authored Jun 16, 2024
2 parents 6d803e7 + 3be58c8 commit d15cd3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion megameklab/resources/megameklab/resources/Views.properties
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ CIMountView.cbSize.tooltip=The mount's size class
CIMountView.txtWeight.text=Weight:
CIMountView.txtWeight.tooltip=The weight of a single creature in tons
CIMountView.spnMovementPoints.text=Movement Points
CIMountView.spnMovementPoints.tooltip=The mount's speed using its primary movment mode
CIMountView.spnMovementPoints.tooltip=The mount's speed using its primary movement mode
CIMountView.cbMovementMode.text=Movement Mode:
CIMountView.cbMovementMode.tooltip=The mount's primary movement mode
CIMountView.spnInfantryBonus.text=Infantry Bonus (D6):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private void initUI() {
gbc.gridx = 2;
gbc.gridwidth = 2;
setFieldSize(spnExtraSeats, spinnerSize);
spnExtraSeats.setToolTipText("CVChassisView.spnExtraSeats.tooltip");
spnExtraSeats.setToolTipText(resourceMap.getString("CVChassisView.spnExtraSeats.tooltip"));
add(spnExtraSeats, gbc);
spnExtraSeats.addChangeListener(this);
gbc.gridy++;
Expand Down

0 comments on commit d15cd3d

Please sign in to comment.