diff --git a/OpenRA.Game/Widgets/WidgetUtils.cs b/OpenRA.Game/Widgets/WidgetUtils.cs index 95f467458e..fbb5055e52 100644 --- a/OpenRA.Game/Widgets/WidgetUtils.cs +++ b/OpenRA.Game/Widgets/WidgetUtils.cs @@ -273,7 +273,7 @@ namespace OpenRA.Widgets public U Update(T input) { - if (initialized && ((input == null && lastInput == null) || input.Equals(lastInput))) + if (initialized && ((input == null && lastInput == null) || (input != null && input.Equals(lastInput)))) return lastOutput; lastInput = input;