From a6901c0a2714e134608afbe9453a43abf1cec5f1 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Thu, 12 Oct 2017 18:17:36 +0900 Subject: [PATCH] Change TimelineButton icon colour to white when hovered --- .../Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs b/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs index fc657325a4..6fad1e5bb5 100644 --- a/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs +++ b/osu.Game/Screens/Edit/Screens/Compose/Timeline/TimelineButton.cs @@ -2,6 +2,7 @@ // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; +using OpenTK.Graphics; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; @@ -30,6 +31,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Timeline Anchor = Anchor.Centre, Origin = Anchor.Centre, IconColour = OsuColour.FromHex("555"), + IconHoverColour = Color4.White, HoverColour = OsuColour.FromHex("3A3A3A"), FlashColour = OsuColour.FromHex("555"), Action = () => Action?.Invoke()