Skip to content

Commit 2338d9b

Browse files
committed
Merge pull request godotengine#89747 from KoBeWi/icoNOT
Remove stray item icon from tabs menu
2 parents e7fa697 + e440796 commit 2338d9b

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
@@ -178,7 +178,7 @@ void EditorSceneTabs::_update_context_menu() {
178178

179179
if (tab_id >= 0) {
180180
scene_tabs_context_menu->add_separator();
181-
scene_tabs_context_menu->add_icon_item(get_editor_theme_icon(SNAME("ShowInFileSystem")), TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
181+
scene_tabs_context_menu->add_item(TTR("Show in FileSystem"), EditorNode::FILE_SHOW_IN_FILESYSTEM);
182182
_disable_menu_option_if(EditorNode::FILE_SHOW_IN_FILESYSTEM, !ResourceLoader::exists(EditorNode::get_editor_data().get_scene_path(tab_id)));
183183
scene_tabs_context_menu->add_item(TTR("Play This Scene"), EditorNode::FILE_RUN_SCENE);
184184
_disable_menu_option_if(EditorNode::FILE_RUN_SCENE, no_root_node);

0 commit comments

Comments
 (0)