Merge pull request #10531 from peppy/fix-accuracy-scale

Adjust accuracy display to match stable
This commit is contained in:
Dan Balasescu 2020-10-16 23:52:30 +09:00 committed by GitHub
commit dff2ba6e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Skinning
Anchor = Anchor.TopRight;
Origin = Anchor.TopRight;
Scale = new Vector2(0.75f);
Scale = new Vector2(0.6f);
Margin = new MarginPadding(10);
this.skin = skin;

View File

@ -5,6 +5,7 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osuTK;
namespace osu.Game.Skinning
{
@ -28,6 +29,7 @@ namespace osu.Game.Skinning
// base class uses int for display, but externally we bind to ScoreProcessor as a double for now.
Current.BindValueChanged(v => base.Current.Value = (int)v.NewValue);
Scale = new Vector2(0.96f);
Margin = new MarginPadding(10);
}