diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs
index 10443cc..3fa0637 100644
--- a/ObservatoryCore/PluginManagement/PluginCore.cs
+++ b/ObservatoryCore/PluginManagement/PluginCore.cs
@@ -105,21 +105,28 @@ namespace Observatory.PluginManagement
//Hacky removal of original empty object if one was used to populate columns
if (worker.PluginUI.DataGrid.Count == 2)
{
- bool allNull = true;
- Type itemType = worker.PluginUI.DataGrid[0].GetType();
- foreach (var property in itemType.GetProperties())
- {
- if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null)
- {
- allNull = false;
- break;
- }
- }
-
- if (allNull)
+ if (FirstRowIsAllNull(worker))
worker.PluginUI.DataGrid.RemoveAt(0);
}
+ });
+ }
+ ///
+ /// Adds multiple items to the datagrid on UI thread to ensure visual update.
+ ///
+ ///
+ ///
+ public void AddGridItems(IObservatoryWorker worker, IEnumerable