Skip to content

Commit

Permalink
Merge pull request #4029 from cwisniew/fix-vbl-tooltips
Browse files Browse the repository at this point in the history
Correct Diamond VBL Tooltip
  • Loading branch information
cwisniew authored May 8, 2023
2 parents 0e2303e + 7bb94b1 commit f0c70b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ public boolean isAvailable() {

@Override
public String getInstructions() {
return "tool.recttopology.instructions";
return "tool.isorectangletopology.instructions";
}

@Override
public String getTooltip() {
return "tool.recttopology.tooltip";
return "tool.isorectangletopology.tooltip";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ public boolean isAvailable() {

@Override
public String getInstructions() {
return "tool.recttopology.instructions";
return "tool.isorectangletopology.instructions";
}

@Override
public String getTooltip() {
return "tool.recttopologyhollow.tooltip";
return "tool.isorectangletopologyhollow.tooltip";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2480,6 +2480,9 @@ tool.rectexpose.tooltip = Expose/Hide a rectangle on the Fog of War.
tool.recttopology.instructions = LClick: set initial/final point, Shift+LClick: erase rectangle; Ctrl: snap-to-grid
tool.recttopology.tooltip = Draw a rectangular VBL.
tool.recttopologyhollow.tooltip = Draw a hollow rectangular VBL.
tool.isorectangletopology.tooltip = Draw a isometric rectangle VBL.
tool.isorectangletopologyhollow.tooltip = Draw a hollow isometric rectangle VBL.
tool.isorectangletopology.instructions = LClick: set initial/final point, Shift+LClick: erase isometric rectangle; Ctrl: snap-to-grid
tool.stamp.tooltip = Stamp tool
tool.walltemplate.instructions = LClick: set starting cell, move mouse in direction of wall, second LClick to finish wall; Ctrl: move origin point
tool.walltemplate.tooltip = Draw a wall template.
Expand Down

0 comments on commit f0c70b5

Please sign in to comment.