From 8cf88f8ff47f0405eed6c607a1a20af3e7b2dc63 Mon Sep 17 00:00:00 2001 From: Eric Tuvesson Date: Thu, 22 Oct 2020 13:28:34 +0200 Subject: fix(editor): Create new icon for TileMap Rectangle ref: #42972 --- editor/icons/Rectangle.svg | 1 + editor/plugins/tile_map_editor_plugin.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 editor/icons/Rectangle.svg diff --git a/editor/icons/Rectangle.svg b/editor/icons/Rectangle.svg new file mode 100644 index 0000000000..415940e68f --- /dev/null +++ b/editor/icons/Rectangle.svg @@ -0,0 +1 @@ + diff --git a/editor/plugins/tile_map_editor_plugin.cpp b/editor/plugins/tile_map_editor_plugin.cpp index 9261113706..cb3c0c8be0 100644 --- a/editor/plugins/tile_map_editor_plugin.cpp +++ b/editor/plugins/tile_map_editor_plugin.cpp @@ -65,7 +65,7 @@ void TileMapEditor::_notification(int p_what) { paint_button->set_icon(get_theme_icon("Edit", "EditorIcons")); line_button->set_icon(get_theme_icon("CurveLinear", "EditorIcons")); - rectangle_button->set_icon(get_theme_icon("RectangleShape2D", "EditorIcons")); + rectangle_button->set_icon(get_theme_icon("Rectangle", "EditorIcons")); bucket_fill_button->set_icon(get_theme_icon("Bucket", "EditorIcons")); picker_button->set_icon(get_theme_icon("ColorPick", "EditorIcons")); select_button->set_icon(get_theme_icon("ActionCopy", "EditorIcons")); -- cgit v1.2.3