diff options
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 53982b37b9..64af879149 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2194,7 +2194,7 @@ void FileSystemDock::_file_option(int p_option, const Vector<String> &p_selected if (ClassDB::is_parent_class(resource_type, "Script") || extension == "tres" || extension == "tscn") { external_program = EDITOR_GET("text_editor/external/exec_path"); } else if (extension == "res" || extension == "scn") { - // Binary resources have no meaningful editor outside Godot, so just fallback to something default. + // Binary resources have no meaningful editor outside Redot, so just fallback to something default. } else if (resource_type == "CompressedTexture2D" || resource_type == "Image") { if (extension == "svg" || extension == "svgz") { external_program = EDITOR_GET("filesystem/external_programs/vector_image_editor"); |