diff --git a/OpenRA.Game/Widgets/ScrollPanelWidget.cs b/OpenRA.Game/Widgets/ScrollPanelWidget.cs index b5c8be5fa2..e0e04bac3f 100644 --- a/OpenRA.Game/Widgets/ScrollPanelWidget.cs +++ b/OpenRA.Game/Widgets/ScrollPanelWidget.cs @@ -151,7 +151,7 @@ namespace OpenRA.Widgets public bool ScrolledToBottom { - get { return ListOffset == Math.Min(0, Bounds.Height - ContentHeight); } + get { return ListOffset == Math.Min(0, Bounds.Height - ContentHeight) || ContentHeight <= Bounds.Height; } } public void ScrollToItem(string itemKey)