summaryrefslogtreecommitdiffstats
path: root/editor/gui/editor_scene_tabs.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-26 15:13:31 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-26 15:13:31 +0200
commit2338d9b3bc3d2ce471223bbd4b42d7cc74363e20 (patch)
tree38063cfeb10eee495454f9d5ae9e7c8438ef03cb /editor/gui/editor_scene_tabs.cpp
parente7fa697808d02571b3191185812e2b8e0f1eedd8 (diff)
parente44079607a804b65f3b690672543681a65b989fe (diff)
downloadredot-engine-2338d9b3bc3d2ce471223bbd4b42d7cc74363e20.tar.gz
Merge pull request #89747 from KoBeWi/icoNOT
Remove stray item icon from tabs menu
Diffstat (limited to 'editor/gui/editor_scene_tabs.cpp')
-rw-r--r--editor/gui/editor_scene_tabs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/gui/editor_scene_tabs.cpp b/editor/gui/editor_scene_tabs.cpp
index 5d1e68f008..94fac59b9b 100644
--- a/editor/gui/editor_scene_tabs.cpp
+++ b/editor/gui/editor_scene_tabs.cpp
@@ -178,7 +178,7 @@ void EditorSceneTabs::_update_context_menu() {
if (tab_id >= 0) {
scene_tabs_context_menu->add_separator();
- scene_tabs_context_menu->add_icon_item(get_editor_theme_icon(SNAME("ShowInFileSystem")), TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
+ scene_tabs_context_menu->add_item(TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
_disable_menu_option_if(EditorNode::FILE_SHOW_IN_FILESYSTEM, !ResourceLoader::exists(EditorNode::get_editor_data().get_scene_path(tab_id)));
scene_tabs_context_menu->add_item(TTR("Play This Scene"), EditorNode::FILE_RUN_SCENE);
_disable_menu_option_if(EditorNode::FILE_RUN_SCENE, no_root_node);