From 3b52200e01afc8fa4f26690a1ac75c20a6565166 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Fri, 25 Mar 2022 11:11:27 +0800 Subject: [PATCH] Fix icons for tile bitmask copy & paste buttons --- editor/plugins/tile_set_editor_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index 9a5268b1592..eaa1c42f8a8 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -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"));