Fix issue #5149: Make chat window not autoscroll

It will autoscroll unless the chat window is open and the scroll
position is not at the bottom.
This commit is contained in:
Pavlos Touboulidis
2014-04-25 18:17:29 +03:00
parent ef066560ad
commit e5e97c9a11
2 changed files with 5 additions and 2 deletions

View File

@@ -146,8 +146,11 @@ namespace OpenRA.Mods.RA.Widgets.Logic
template.Bounds.Height += dh;
}
bool scrolledToBottom = chatScrollPanel.ScrolledToBottom;
chatScrollPanel.AddChild(template);
if (scrolledToBottom)
chatScrollPanel.ScrollToBottom();
Sound.PlayNotification(null, "Sounds", "ChatLine", null);
}
}