From 182e1e640ffc56c92f7926cd5f4c4c45a02ecfc2 Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Sun, 3 Sep 2017 13:10:43 -0500 Subject: [PATCH] Fix. resizeable -> resizable. (not actually a typo, but the rest of the API uses resizable) --- visual_script_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visual_script_editor.cpp b/visual_script_editor.cpp index 8386687..37bd730 100644 --- a/visual_script_editor.cpp +++ b/visual_script_editor.cpp @@ -523,7 +523,7 @@ void VisualScriptEditor::_update_graph(int p_only_id) { if (Object::cast_to(*node)) { Ref 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())); }