Remove initial value changed invocations

This commit is contained in:
smoogipoo
2020-11-06 23:35:47 +09:00
parent 33b629a87a
commit e190afbfed
3 changed files with 8 additions and 8 deletions

View File

@ -73,7 +73,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
}
};
PositionBindable.BindValueChanged(pos => Position = pos.NewValue, true);
PositionBindable.BindValueChanged(pos => Position = pos.NewValue);
}
protected override void LoadComplete()