Remove unnecessary autosize workaround (was fixed long ago)

This commit is contained in:
Dean Herbert 2022-05-06 19:39:00 +09:00
parent 949e30c4b4
commit 59add66632
1 changed files with 0 additions and 4 deletions

View File

@ -141,10 +141,6 @@ protected override void LoadComplete()
Expanded.BindValueChanged(v =>
{
// clearing transforms can break autosizing, see: https://github.com/ppy/osu-framework/issues/5064
if (v.NewValue != v.OldValue)
content.ClearTransforms();
Scheduler.AddOnce(updateExpandedState);
}, true);