Skip to content

Commit e440796

Browse files
committed
Remove stray item icon from tabs menu
1 parent fe01776 commit e440796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/gui/editor_scene_tabs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ void EditorSceneTabs::_update_context_menu() {
167167

168168
if (tab_id >= 0) {
169169
scene_tabs_context_menu->add_separator();
170-
scene_tabs_context_menu->add_icon_item(get_editor_theme_icon(SNAME("ShowInFileSystem")), TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
170+
scene_tabs_context_menu->add_item(TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
171171
_disable_menu_option_if(EditorNode::FILE_SHOW_IN_FILESYSTEM, !ResourceLoader::exists(EditorNode::get_editor_data().get_scene_path(tab_id)));
172172
scene_tabs_context_menu->add_item(TTR("Play This Scene"), EditorNode::FILE_RUN_SCENE);
173173
_disable_menu_option_if(EditorNode::FILE_RUN_SCENE, no_root_node);

0 commit comments

Comments
 (0)