make LogWindow automatically scroll to last added line

This commit is contained in:
feos 2021-05-11 21:13:34 +03:00
parent 567cb0c8fd
commit 9b2fce578c
1 changed files with 1 additions and 0 deletions

View File

@ -102,6 +102,7 @@ namespace BizHawk.Client.EmuHawk
private void doUpdateListSize()
{
virtualListView1.VirtualListSize = _lines.Count;
virtualListView1.EnsureVisible(_lines.Count - 1);
}
private void appendInvoked(string str)