1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Tweak filled nub border width value

This commit is contained in:
AbstractQbit 2021-09-13 14:19:33 +03:00
parent 4d2373ffb9
commit 9c1fc2ec65

View File

@ -49,7 +49,7 @@ namespace osu.Game.Graphics.UserInterface
Current.ValueChanged += filled =>
{
fill.FadeTo(filled.NewValue ? 1 : 0, 200, Easing.OutQuint);
this.TransformTo(nameof(BorderThickness), filled.NewValue ? 7 : border_width, 200, Easing.OutQuint);
this.TransformTo(nameof(BorderThickness), filled.NewValue ? 8.5f : border_width, 200, Easing.OutQuint);
};
}