diff options
author | Daniel J. Ramirez <djrmuv@gmail.com> | 2018-02-20 11:25:17 -0600 |
---|---|---|
committer | Daniel J. Ramirez <djrmuv@gmail.com> | 2018-02-21 19:05:50 -0600 |
commit | cecf2743648c0d48e20b243cb0353c6a0d660c0a (patch) | |
tree | d4b510b631ee868ab4a2d310b71edb7d846792ee /editor/editor_file_dialog.cpp | |
parent | 24cf4fe062b06205d5fcf3e8824eb14f0fbb0246 (diff) | |
download | redot-engine-cecf2743648c0d48e20b243cb0353c6a0d660c0a.tar.gz |
Icons update
includes new enum, MeshInstance2D, Skeleton2D, Cut, Copy and Paste icons.
Diffstat (limited to 'editor/editor_file_dialog.cpp')
-rw-r--r-- | editor/editor_file_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_file_dialog.cpp b/editor/editor_file_dialog.cpp index 22b33cc98f..c52f25e66b 100644 --- a/editor/editor_file_dialog.cpp +++ b/editor/editor_file_dialog.cpp @@ -551,7 +551,7 @@ void EditorFileDialog::_item_list_item_rmb_selected(int p_item, const Vector2 &p } if (single_item_selected) { - item_menu->add_icon_item(get_icon("CopyNodePath", "EditorIcons"), TTR("Copy Path"), ITEM_MENU_COPY_PATH); + item_menu->add_icon_item(get_icon("ActionCopy", "EditorIcons"), TTR("Copy Path"), ITEM_MENU_COPY_PATH); } if (allow_delete) { item_menu->add_icon_item(get_icon("Remove", "EditorIcons"), TTR("Delete"), ITEM_MENU_DELETE, KEY_DELETE); |