Skip to content

Commit

Permalink
Merge pull request #97134 from timothyqiu/file-system
Browse files Browse the repository at this point in the history
Fix inconsistency in FileSystem naming in shader editor menu
  • Loading branch information
akien-mga committed Sep 18, 2024
2 parents 2f91184 + 8a7713e commit 84dcdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/plugins/shader_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ void ShaderEditorPlugin::_setup_popup_menu(PopupMenuType p_type, PopupMenu *p_me
if (p_type == CONTEXT_VALID_ITEM) {
p_menu->add_separator();
p_menu->add_item(TTR("Copy Script Path"), COPY_PATH);
p_menu->add_item(TTR("Show in File System"), SHOW_IN_FILE_SYSTEM);
p_menu->add_item(TTR("Show in FileSystem"), SHOW_IN_FILE_SYSTEM);
}
}
}
Expand Down

0 comments on commit 84dcdde

Please sign in to comment.