Fix missing scrollbar on message log tab.

This commit is contained in:
Mari the Deer 2022-04-12 18:08:51 +02:00
commit aab750997d
2 changed files with 8 additions and 3 deletions

View file

@ -65,7 +65,12 @@ Class DemolitionistChatTab : DemolitionistMenuTab
}
if ( ofs < maxofs ) recenter = false; // don't recenter if we weren't at the bottom
}
else recenter = false;
else
{
for ( int i=0; i<msglist.items.Size(); i++ )
ypos += msglist.items[i].GetHeight();
recenter = false;
}
maxofs = max(ypos-int(master.ws.y-46),0);
// push it to the bottom
if ( recenter ) ofs = maxofs;