From fa0b33a1ea9fea5f79b58a096b3d7dc41405121d Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 17 Jul 2014 17:56:01 +1200 Subject: [PATCH] Re-enable the ready colour blinking. --- OpenRA.Mods.RA/Widgets/ProductionPaletteWidget.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Widgets/ProductionPaletteWidget.cs b/OpenRA.Mods.RA/Widgets/ProductionPaletteWidget.cs index 882b7620f6..eacb0bf746 100644 --- a/OpenRA.Mods.RA/Widgets/ProductionPaletteWidget.cs +++ b/OpenRA.Mods.RA/Widgets/ProductionPaletteWidget.cs @@ -34,8 +34,8 @@ namespace OpenRA.Mods.RA.Widgets public class ProductionPaletteWidget : Widget { public enum ReadyTextStyleOptions { Solid, AlternatingColor, Blinking } - public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.Blinking; - public readonly Color ReadyTextAltColor = Color.Red; + public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.AlternatingColor; + public readonly Color ReadyTextAltColor = Color.Gold; public readonly int Columns = 3; public readonly int2 IconSize = new int2(64, 48); public readonly int2 IconMargin = int2.Zero;