1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 07:42:37 +08:00

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
Unverified
2 changed files with 3 additions and 1 deletions
+1 -1
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;
+2
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);
}