Skip to content

Commit

Permalink
Merge pull request #59501 from timothyqiu/tileset-icons-3.x
Browse files Browse the repository at this point in the history
[3.x] Fix icons for tile bitmask copy & paste buttons
  • Loading branch information
akien-mga authored Mar 25, 2022
2 parents f60e7ed + 3b52200 commit ffea68a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/plugins/tile_set_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ void TileSetEditor::_notification(int p_what) {
tool_workspacemode[WORKSPACE_CREATE_ATLAS]->set_icon(get_icon("AddAtlasTile", "EditorIcons"));

tools[TOOL_SELECT]->set_icon(get_icon("ToolSelect", "EditorIcons"));
tools[BITMASK_COPY]->set_icon(get_icon("Duplicate", "EditorIcons"));
tools[BITMASK_PASTE]->set_icon(get_icon("Override", "EditorIcons"));
tools[BITMASK_COPY]->set_icon(get_icon("ActionCopy", "EditorIcons"));
tools[BITMASK_PASTE]->set_icon(get_icon("ActionPaste", "EditorIcons"));
tools[BITMASK_CLEAR]->set_icon(get_icon("Clear", "EditorIcons"));
tools[SHAPE_NEW_POLYGON]->set_icon(get_icon("CollisionPolygon2D", "EditorIcons"));
tools[SHAPE_NEW_RECTANGLE]->set_icon(get_icon("CollisionShape2D", "EditorIcons"));
Expand Down

0 comments on commit ffea68a

Please sign in to comment.