diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index 7e5387f..8820a5e 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -111,7 +111,6 @@ namespace Observatory.UI.Views { var dataContext = ((ViewModels.BasicUIViewModel)dataGrid.DataContext).BasicUIGrid; dataContext.CollectionChanged += ScrollToLast; - } } @@ -121,7 +120,10 @@ namespace Observatory.UI.Views if (e.Action != System.Collections.Specialized.NotifyCollectionChangedAction.Add || UIType != PluginUI.UIType.Basic || dataGrid == null || !(sender is ObservableCollection)) return; var dataContext = (ObservableCollection)sender; - dataGrid.ScrollIntoView(dataContext[dataContext.Count - 1], null); + Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => + { + dataGrid.ScrollIntoView(dataContext[dataContext.Count - 1], null); + }); } private Grid GenerateCoreUI()