Unverified Commit 94f00eb6 by Rémi Verschelde Committed by GitHub

Merge pull request #33498 from nekomatata/error-save-scene-preview

Fixed errors when saving scene with a shrunk viewport
parents f2cd52dd 133014c3
......@@ -1065,7 +1065,7 @@ void EditorNode::_save_scene_with_preview(String p_file, int p_idx) {
img->crop_from_point(x, y, vp_size, vp_size);
} else {
int ratio = vp_size / preview_size;
int size = preview_size * (ratio / 2);
int size = preview_size * MAX(1, ratio / 2);
x = (img->get_width() - size) / 2;
y = (img->get_height() - size) / 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment