1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-30 16:26:50 +00:00

Fix Viewport size change not updating textures

(cherry picked from commit 3a4a4aeade)
This commit is contained in:
kobewi
2022-08-22 16:34:47 +02:00
committed by Rémi Verschelde
parent 2969922ba9
commit 0511f48c49

View File

@@ -730,6 +730,10 @@ void Viewport::set_size(const Size2 &p_size) {
_update_stretch_transform();
update_configuration_warning();
for (Set<ViewportTexture *>::Element *E = viewport_textures.front(); E; E = E->next()) {
E->get()->emit_changed();
}
emit_signal("size_changed");
}