diff options
| author | Juan Linietsky | 2017-06-12 16:18:17 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-06-12 16:19:12 -0300 |
| commit | 42b2d52c8857fdca52029b66a73be0aa951aafe9 (patch) | |
| tree | f8dc71c9ca3361a8f45d19bbfebb33895f03a5c8 /scene/main/viewport.cpp | |
| parent | 5f1603ca456dbf7521613a67798153c787149bfe (diff) | |
| download | godot-42b2d52c8857fdca52029b66a73be0aa951aafe9.tar.gz godot-42b2d52c8857fdca52029b66a73be0aa951aafe9.tar.zst godot-42b2d52c8857fdca52029b66a73be0aa951aafe9.zip | |
Properly adjust the visible editor rect and make limits respected, closes #8328
Diffstat (limited to '')
| -rw-r--r-- | scene/main/viewport.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index 763cac2af..d8ec8b999 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -1156,6 +1156,7 @@ void Viewport::set_size_override(bool p_enable, const Size2 &p_size, const Vecto size_override_margin = p_margin; _update_rect(); _update_stretch_transform(); + emit_signal("size_changed"); } Size2 Viewport::get_size_override() const { |
