diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2019-11-18 10:49:37 +0100 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2019-11-18 11:52:01 +0100 |
commit | 6d14251b0d77356bb2387440aa3c97bc8c58f59f (patch) | |
tree | 854875361917d1c2f1c9b96727dc07e2ee19b74b /editor/plugins/canvas_item_editor_plugin.h | |
parent | 58ca9f17a2650bb381972210d1babbf34ac6819c (diff) |
Fixed "Add Sprite..." label overlapping with zoom controls
Diffstat (limited to 'editor/plugins/canvas_item_editor_plugin.h')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.h b/editor/plugins/canvas_item_editor_plugin.h index 3fdf00d611..3ba66c00f9 100644 --- a/editor/plugins/canvas_item_editor_plugin.h +++ b/editor/plugins/canvas_item_editor_plugin.h @@ -530,6 +530,7 @@ private: void _button_toggle_anchor_mode(bool p_status); + VBoxContainer *controls_vb; HBoxContainer *zoom_hb; void _zoom_on_position(float p_zoom, Point2 p_position = Point2()); void _update_zoom_label(); @@ -627,6 +628,8 @@ public: Control *get_viewport_control() { return viewport; } + Control *get_controls_container() { return controls_vb; } + void update_viewport(); Tool get_current_tool() { return tool; } |