diff options
author | Anilforextra <anilforextra@gmail.com> | 2021-09-22 14:09:45 +0545 |
---|---|---|
committer | Anilforextra <anilforextra@gmail.com> | 2021-09-22 14:09:45 +0545 |
commit | c63d51408fe1ee8d4e57b235c94037732ecf2104 (patch) | |
tree | 896025cb2e29ffea5442deee57c14d195facd19e /editor/plugins | |
parent | c1e6c2c49a7a2c05649d79733e7edda382aa92df (diff) |
Use Rect2's get_end().
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/texture_region_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/texture_region_editor_plugin.cpp b/editor/plugins/texture_region_editor_plugin.cpp index 50ad12635b..a0d841ccca 100644 --- a/editor/plugins/texture_region_editor_plugin.cpp +++ b/editor/plugins/texture_region_editor_plugin.cpp @@ -344,7 +344,7 @@ void TextureRegionEditor::_region_input(const Ref<InputEvent> &p_input) { r = obj_styleBox->get_region_rect(); } rect.expand_to(r.position); - rect.expand_to(r.position + r.size); + rect.expand_to(r.get_end()); } undo_redo->create_action(TTR("Set Region Rect")); if (atlas_tex.is_valid()) { @@ -544,7 +544,7 @@ void TextureRegionEditor::_region_input(const Ref<InputEvent> &p_input) { switch (drag_index) { case 0: { - Vector2 p = rect_prev.position + rect_prev.size; + Vector2 p = rect_prev.get_end(); rect = Rect2(p, Size2()); rect.expand_to(new_pos); apply_rect(rect); |