Merge pull request #59663 from bruvzg/subviewport_update
This commit is contained in:
commit
11a5f612fa
|
@ -1038,8 +1038,8 @@ Transform2D Viewport::get_final_transform() const {
|
||||||
|
|
||||||
void Viewport::_update_canvas_items(Node *p_node) {
|
void Viewport::_update_canvas_items(Node *p_node) {
|
||||||
if (p_node != this) {
|
if (p_node != this) {
|
||||||
Viewport *vp = Object::cast_to<Viewport>(p_node);
|
Window *w = Object::cast_to<Window>(p_node);
|
||||||
if (vp) {
|
if (w && (!w->is_inside_tree() || !w->is_embedded())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue