From 3cc8cc3abe8afc79dc77417545b105474d8e1e4c Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Fri, 25 Mar 2022 07:17:28 -0400 Subject: [PATCH] Fix a "Call from invalid thread" exception. (#72) Random occurrence triggered by a plugin's grid update. It's either fairly rare (related to something I was doing in-app) or new with a recent update to the plugin that caused it (just updated it last night). --- ObservatoryCore/UI/Views/BasicUIView.axaml.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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()