diff options
author | groud <gilles.roudiere@gmail.com> | 2018-07-29 23:09:59 +0200 |
---|---|---|
committer | groud <gilles.roudiere@gmail.com> | 2018-07-30 01:05:13 +0200 |
commit | eb7f4ddccebfc0aca0a8981f3ba62971cb9838d4 (patch) | |
tree | 097eb5e619e21f73ae408114de057f7ea0ccffc9 /editor/plugins/canvas_item_editor_plugin.h | |
parent | 200c6cf630aa56b98310b3e747439795f8abbab8 (diff) |
Fixes bugs on the 2D editor scrollable area
Diffstat (limited to 'editor/plugins/canvas_item_editor_plugin.h')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.h b/editor/plugins/canvas_item_editor_plugin.h index adc4010f39..2c943385ad 100644 --- a/editor/plugins/canvas_item_editor_plugin.h +++ b/editor/plugins/canvas_item_editor_plugin.h @@ -390,7 +390,7 @@ class CanvasItemEditor : public VBoxContainer { List<CanvasItem *> _get_edited_canvas_items(bool retreive_locked = false, bool remove_canvas_item_if_parent_in_selection = true); Rect2 _get_encompassing_rect_from_list(List<CanvasItem *> p_list); - void _expand_encompassing_rect_using_children(Rect2 &p_rect, const Node *p_node, bool &r_first, const Transform2D &p_parent_xform = Transform2D(), const Transform2D &p_canvas_xform = Transform2D()); + void _expand_encompassing_rect_using_children(Rect2 &p_rect, const Node *p_node, bool &r_first, const Transform2D &p_parent_xform = Transform2D(), const Transform2D &p_canvas_xform = Transform2D(), bool include_locked_nodes = true); Rect2 _get_encompassing_rect(const Node *p_node); Object *_get_editor_data(Object *p_what); |