diff options
author | Chaosus <chaosus89@gmail.com> | 2019-05-21 18:37:31 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2019-05-21 18:37:31 +0300 |
commit | 6f2abd68f27b966ba4b45ae8e90192b7a0ea1382 (patch) | |
tree | 5b868feb6a94c3e04534e62c75e0b51970aa87b5 /editor | |
parent | 7d42ca838486ce4a737e074b60fffd81de1bc971 (diff) |
Fix few bugs in expression node
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index cdb1dbfdc4..31f5d337a7 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -984,9 +984,9 @@ void VisualShaderEditor::_set_node_size(int p_type, int p_node, const Vector2 &p box_size.x = gn->get_size().x; } } - box_size.x -= text_box->get_margin(Margin::MARGIN_LEFT); + box_size.x -= text_box->get_margin(MARGIN_LEFT); box_size.x -= 28 * EDSCALE; - box_size.y -= text_box->get_margin(Margin::MARGIN_TOP); + box_size.y -= text_box->get_margin(MARGIN_TOP); box_size.y -= 28 * EDSCALE; text_box->set_custom_minimum_size(Size2(box_size.x, box_size.y)); text_box->set_size(Size2(1, 1)); |