diff options
author | JFonS <joan.fonssanchez@gmail.com> | 2018-08-30 14:24:24 +0200 |
---|---|---|
committer | JFonS <joan.fonssanchez@gmail.com> | 2018-08-30 14:24:24 +0200 |
commit | 07d9b7af7a851d802294bc7fbd0424822277da0a (patch) | |
tree | bebfe56b987abca78d25dd5fa2a0ff17b764bf7c /editor/plugins/path_editor_plugin.cpp | |
parent | cb63cc86e5ff8d70dc074381eb5f7d32298cd2ef (diff) | |
download | redot-engine-07d9b7af7a851d802294bc7fbd0424822277da0a.tar.gz |
Fix regression #21262 in Path Gizmo
closes #21262
Diffstat (limited to 'editor/plugins/path_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/path_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/path_editor_plugin.cpp b/editor/plugins/path_editor_plugin.cpp index 618c70d1a1..ef7ecb0fb0 100644 --- a/editor/plugins/path_editor_plugin.cpp +++ b/editor/plugins/path_editor_plugin.cpp @@ -57,7 +57,7 @@ String PathSpatialGizmo::get_handle_name(int p_idx) const { return n; } -Variant PathSpatialGizmo::get_handle_value(int p_idx) const { +Variant PathSpatialGizmo::get_handle_value(int p_idx) { Ref<Curve3D> c = path->get_curve(); if (c.is_null()) |