Skip to content

Commit d13e353

Browse files
committed
Fix double colour application in update progress notification
I'd like to restore it to yellow, but let's clean the slate first.
1 parent e1e46ad commit d13e353

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

osu.Desktop/Updater/SquirrelUpdateManager.cs

-9
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@
66
using System.Threading.Tasks;
77
using osu.Framework.Allocation;
88
using osu.Framework.Graphics;
9-
using osu.Framework.Graphics.Colour;
10-
using osu.Framework.Graphics.Shapes;
119
using osu.Framework.Graphics.Sprites;
1210
using osu.Framework.Logging;
1311
using osu.Game;
1412
using osu.Game.Graphics;
1513
using osu.Game.Overlays;
1614
using osu.Game.Overlays.Notifications;
1715
using osuTK;
18-
using osuTK.Graphics;
1916
using Squirrel;
2017
using Squirrel.SimpleSplat;
2118

@@ -177,17 +174,11 @@ private void load(OsuColour colours)
177174
{
178175
IconContent.AddRange(new Drawable[]
179176
{
180-
new Box
181-
{
182-
RelativeSizeAxes = Axes.Both,
183-
Colour = ColourInfo.GradientVertical(colours.YellowDark, colours.Yellow)
184-
},
185177
new SpriteIcon
186178
{
187179
Anchor = Anchor.Centre,
188180
Origin = Anchor.Centre,
189181
Icon = FontAwesome.Solid.Upload,
190-
Colour = Color4.White,
191182
Size = new Vector2(20),
192183
}
193184
});

0 commit comments

Comments
 (0)