mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-26 08:31:49 +01:00
Minor tweak
This commit is contained in:
parent
e39cccf279
commit
cd35daee42
@ -301,7 +301,10 @@ Suspend support not enabled.", true);
|
||||
Dispatcher.BeginInvoke((Action)(() =>
|
||||
{
|
||||
int count = logListView.Items.Count;
|
||||
logListView.ScrollIntoView(logvm.LogItems[count > 0 ? count-1 : 0]);
|
||||
if (count > 0)
|
||||
{
|
||||
logListView.ScrollIntoView(logvm.LogItems[count - 1]);
|
||||
}
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user