diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-28 20:56:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 20:56:07 +0200 |
commit | b253aca53f4590b173b110017eb5095a5a6059a0 (patch) | |
tree | a0ef8973b3740cbe94923c2a299cee85748f15f9 /scene/gui/graph_edit.h | |
parent | bf0ec13fee05e306e3858194eae3f881204a2ce1 (diff) | |
parent | 990c88f24c33e8be9507d6b3c626289cf0cfae26 (diff) |
Merge pull request #47351 from volzhs/graphedit-boxselection
Fix drawing boxselection on GraphEdit
Diffstat (limited to 'scene/gui/graph_edit.h')
-rw-r--r-- | scene/gui/graph_edit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/graph_edit.h b/scene/gui/graph_edit.h index 8fdf975319..fa3b113705 100644 --- a/scene/gui/graph_edit.h +++ b/scene/gui/graph_edit.h @@ -150,7 +150,7 @@ private: Point2 box_selecting_from; Point2 box_selecting_to; Rect2 box_selecting_rect; - List<GraphNode *> previus_selected; + List<GraphNode *> previous_selected; bool setting_scroll_ofs = false; bool right_disconnects = false; |