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

Correct Diamond VBL Tooltip #4029

Merged
merged 7 commits into from
May 8, 2023
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 @@ -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 @@ -2477,6 +2477,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