Merge pull request #114454 from ASamBlur/remove-unused-line-in-editor_properties

Remove unused variable in `editor_properties.cpp`
This commit is contained in:
Thaddeus Crews 2026-01-28 12:26:57 -06:00
commit db8b8096e0
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC

View file

@ -4043,7 +4043,6 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
} break;
case Variant::BASIS: {
EditorPropertyBasis *editor = memnew(EditorPropertyBasis);
EditorPropertyRangeHint hint = _parse_range_hint(p_hint, p_hint_text, default_float_step);
editor->setup(_parse_range_hint(p_hint, p_hint_text, default_float_step));
return editor;
} break;