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

Use "isometric rectangle" instead of "diamond" in tooltips #4357

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ protected void completeDrawable(GUID zoneId, Pen pen, Drawable drawable) {

@Override
public String getTooltip() {
return "tool.diamondexpose.tooltip";
return "tool.isorectangleexpose.tooltip";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public String getInstructions() {

@Override
public String getTooltip() {
return "tool.diamond.tooltip";
return "tool.isorectangle.tooltip";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2507,8 +2507,8 @@ tool.crosstopology.instructions = LClick: set initial/final point; Shift LClick
tool.crosstopology.tooltip = Draw a cross VBL
tool.deletedrawing.instructions=LClick: Select drawings Double-Click: Delete selected drawings.
tool.deletedrawing.tooltip=Delete drawing tool
tool.diamond.tooltip = Draw a diamond.
tool.diamondexpose.tooltip = Expose/Hide a diamond on the Fog of War.
tool.isorectangle.tooltip = Draw an isometric rectangle.
tool.isorectangleexpose.tooltip = Expose/Hide an isometric rectangle on the Fog of War.
tool.facing.instructions = Unused
tool.facing.tooltip = Set the token facing.
tool.filltopology.tooltip = Fill in closed areas of VBL.
Expand Down Expand Up @@ -2552,7 +2552,7 @@ 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.isorectangletopology.tooltip = Draw an 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
Expand Down
Loading