diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-04 07:37:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 07:37:59 +0200 |
commit | 7040a390ad60ebf3f4c28dd1d2c99136a423f264 (patch) | |
tree | a3dda5ab82eb711fbac99fbe9d1fa93e7c9212fa /scene/gui/graph_node.h | |
parent | adde89e8b1c66b4f4814c3b47a5d347ff576428b (diff) | |
parent | d6b664f6717240de6b5c1eee65df304955b1fe42 (diff) |
Merge pull request #10937 from djrm/pr_fix_typo
Fix. resizeable -> resizable.
Diffstat (limited to 'scene/gui/graph_node.h')
-rw-r--r-- | scene/gui/graph_node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/gui/graph_node.h b/scene/gui/graph_node.h index 416d711aab..a606e47acd 100644 --- a/scene/gui/graph_node.h +++ b/scene/gui/graph_node.h @@ -68,7 +68,7 @@ private: bool show_close; Vector2 offset; bool comment; - bool resizeable; + bool resizable; bool resizing; Vector2 resizing_from; @@ -151,8 +151,8 @@ public: void set_comment(bool p_enable); bool is_comment() const; - void set_resizeable(bool p_enable); - bool is_resizeable() const; + void set_resizable(bool p_enable); + bool is_resizable() const; virtual Size2 get_minimum_size() const; |