Merge pull request #89048 from KoBeWi/iBug

Fix `update_property()` in particle material editor
This commit is contained in:
Rémi Verschelde 2024-03-01 17:22:25 +01:00
commit dad6c774b0
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ void ParticleProcessMaterialMinMaxPropertyEditor::setup(float p_min, float p_max
}
void ParticleProcessMaterialMinMaxPropertyEditor::update_property() {
const Vector2i value = get_edited_property_value();
const Vector2 value = get_edited_property_value();
min_range->set_value(value.x);
max_range->set_value(value.y);
_update_slider_values();