style: fix late night oopsies

This commit is contained in:
tsrk 2023-03-06 20:06:56 +00:00
parent 3a240aaa5f
commit 952814604e
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6
2 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,6 @@ using osu.Framework.Audio.Sample;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Graphics.Textures; using osu.Framework.Graphics.Textures;
using osu.Framework.IO.Stores; using osu.Framework.IO.Stores;
using osu.Framework.Logging;
using osu.Game.Audio; using osu.Game.Audio;
using osu.Game.IO; using osu.Game.IO;
using osu.Game.IO.Archives; using osu.Game.IO.Archives;
@ -64,8 +63,6 @@ namespace osu.Game.Tests.Skins
foreach (string oskFile in available_skins) foreach (string oskFile in available_skins)
{ {
Logger.Log($"Testing file {oskFile}...");
using (var stream = TestResources.OpenResource(oskFile)) using (var stream = TestResources.OpenResource(oskFile))
using (var storage = new ZipArchiveReader(stream)) using (var storage = new ZipArchiveReader(stream))
{ {

View File

@ -43,8 +43,7 @@ namespace osu.Game.Screens.Play.HUD
base.LoadComplete(); base.LoadComplete();
avatar.User = gameplayState.Score.ScoreInfo.User; avatar.User = gameplayState.Score.ScoreInfo.User;
avatar.CornerRadius = CornerRadius.Value; CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue, true);
CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue);
} }
public bool UsesFixedAnchor { get; set; } public bool UsesFixedAnchor { get; set; }