diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-28 21:59:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 21:59:12 +0200 |
commit | 75e4ccc00e0741db9bdfe3d0f0422afe796a0844 (patch) | |
tree | 350d5376028987aabd9a66ead46f989e55931fb4 | |
parent | 088cf37bf2aaded4560b549bcd3d6624bbe3e3c2 (diff) | |
parent | 8f5ac3dbfc9d9c835e5788613d8642dd2b297a2b (diff) |
Merge pull request #36427 from nekomatata/scene-thumbnail-flipped
Fixed flipped scene preview thumbnail
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index c4584e3dfb..ea2009ab58 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -1195,8 +1195,6 @@ void EditorNode::_save_scene_with_preview(String p_file, int p_idx) { } img->convert(Image::FORMAT_RGB8); - img->flip_y(); - //save thumbnail directly, as thumbnailer may not update due to actual scene not changing md5 String temp_path = EditorSettings::get_singleton()->get_cache_dir(); String cache_base = ProjectSettings::get_singleton()->globalize_path(p_file).md5_text(); |