Fix. resizeable -> resizable.

(not actually a typo, but the rest of the API uses resizable)
This commit is contained in:
Daniel J. Ramirez 2017-09-03 13:10:43 -05:00
parent ce28452109
commit d6b664f671
3 changed files with 14 additions and 14 deletions

View file

@ -523,7 +523,7 @@ void VisualScriptEditor::_update_graph(int p_only_id) {
if (Object::cast_to<VisualScriptExpression>(*node)) {
Ref<VisualScriptComment> vsc = node;
gnode->set_comment(true);
gnode->set_resizeable(true);
gnode->set_resizable(true);
gnode->set_custom_minimum_size(vsc->get_size() * EDSCALE);
gnode->connect("resize_request", this, "_comment_node_resized", varray(E->get()));
}