aboutsummaryrefslogtreecommitdiff
path: root/editor/property_editor.cpp
diff options
context:
space:
mode:
authorDaniel J. Ramirez2017-08-29 17:02:55 -0500
committerDaniel J. Ramirez2017-08-29 17:02:55 -0500
commite3e5dfdaf47fd4171945667b6c5cda5261ec4c46 (patch)
treeb7db7c800a29fdf660702a17d0d2070109e9ef99 /editor/property_editor.cpp
parente8b05ca996baa9819f55fc1d190a79d24906bde7 (diff)
downloadgodot-e3e5dfdaf47fd4171945667b6c5cda5261ec4c46.tar.gz
godot-e3e5dfdaf47fd4171945667b6c5cda5261ec4c46.tar.zst
godot-e3e5dfdaf47fd4171945667b6c5cda5261ec4c46.zip
Improved and added some icons
Diffstat (limited to 'editor/property_editor.cpp')
-rw-r--r--editor/property_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp
index 34a3ab71d..a42fb41ee 100644
--- a/editor/property_editor.cpp
+++ b/editor/property_editor.cpp
@@ -866,7 +866,7 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant::
if (!RES(v).is_null()) {
menu->add_icon_item(get_icon("Edit", "EditorIcons"), "Edit", OBJ_MENU_EDIT);
- menu->add_icon_item(get_icon("Del", "EditorIcons"), "Clear", OBJ_MENU_CLEAR);
+ menu->add_icon_item(get_icon("Clear", "EditorIcons"), "Clear", OBJ_MENU_CLEAR);
menu->add_icon_item(get_icon("Duplicate", "EditorIcons"), "Make Unique", OBJ_MENU_MAKE_UNIQUE);
RES r = v;
if (r.is_valid() && r->get_path().is_resource_file()) {