Merge pull request #20026 from taylorjoshuaw/fix-window-height-crash
Temporary fix to issue #19628 and #19207
This commit is contained in:
commit
d488c35efa
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ void VisualServerViewport::draw_viewports() {
|
|||
ERR_CONTINUE(!vp->render_target.is_valid());
|
||||
|
||||
bool visible = vp->viewport_to_screen_rect != Rect2() || vp->update_mode == VS::VIEWPORT_UPDATE_ALWAYS || vp->update_mode == VS::VIEWPORT_UPDATE_ONCE || (vp->update_mode == VS::VIEWPORT_UPDATE_WHEN_VISIBLE && VSG::storage->render_target_was_used(vp->render_target));
|
||||
visible = visible && vp->size.x > 0 && vp->size.y > 0;
|
||||
visible = visible && vp->size.x > 1 && vp->size.y > 1;
|
||||
|
||||
if (!visible)
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue