diff options
author | Ramesh Ravone <ramesh.maran443@gmail.com> | 2017-04-25 17:48:08 +0530 |
---|---|---|
committer | Ramesh Ravone <ramesh.maran443@gmail.com> | 2017-04-25 17:48:08 +0530 |
commit | ff282571c6a1b9b5e57fd3a8e435b84438bc22a3 (patch) | |
tree | 9cf482a9e899a2ad851211131fdf55641b9f5276 /editor/plugins | |
parent | 7dba15b83fb2d2bd72559356cfedfec53215c55d (diff) |
Settings: Moving Poly Editor into Editors category
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/line_2d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/line_2d_editor_plugin.cpp b/editor/plugins/line_2d_editor_plugin.cpp index 69e329eb1a..4df0d2605a 100644 --- a/editor/plugins/line_2d_editor_plugin.cpp +++ b/editor/plugins/line_2d_editor_plugin.cpp @@ -62,7 +62,7 @@ Vector2 Line2DEditor::mouse_to_local_pos(Vector2 gpoint, bool alt) { int Line2DEditor::get_point_index_at(Vector2 gpos) { ERR_FAIL_COND_V(node == 0, -1); - real_t grab_treshold = EDITOR_DEF("poly_editor/point_grab_radius", 8); + real_t grab_treshold = EDITOR_DEF("editors/poly_editor/point_grab_radius", 8); Transform2D xform = canvas_item_editor->get_canvas_transform() * node->get_global_transform(); for (int i = 0; i < node->get_point_count(); ++i) { |