1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Avoid one unnecessary path update from B-spline builder

This commit is contained in:
Bartłomiej Dach 2023-11-20 12:42:16 +09:00
parent 518dcc567b
commit f46945a294
No known key found for this signature in database

View File

@ -87,7 +87,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
if (bSplineBuilder.Tolerance != e.NewValue)
bSplineBuilder.Tolerance = e.NewValue;
updateSliderPathFromBSplineBuilder();
}, true);
});
drawingSettingsProvider.CornerThreshold.BindValueChanged(e =>
{