1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 00:43:21 +08:00

Fix chat scroll sticking visually when scrolling beyond bottom extent

This commit is contained in:
Dean Herbert 2021-03-29 18:07:47 +09:00
parent b9b0623c83
commit 699a317b44

View File

@ -275,6 +275,7 @@ namespace osu.Game.Overlays.Chat
{ {
if (!UserScrolling) if (!UserScrolling)
{ {
if (Current < ScrollableExtent)
ScrollToEnd(); ScrollToEnd();
lastExtent = ScrollableExtent; lastExtent = ScrollableExtent;
} }