mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Consolidate plugin errors into single window. * Handle error aggregation and loggin inside error reporter. * Minor logging corrections. * Error popup tweaking
20 lines
557 B
C#
20 lines
557 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Observatory.UI.ViewModels
|
|
{
|
|
public class MainWindowViewModel : ViewModelBase
|
|
{
|
|
public MainWindowViewModel(PluginManagement.PluginManager pluginManager)
|
|
{
|
|
core = new CoreViewModel(pluginManager.workerPlugins, pluginManager.notifyPlugins);
|
|
|
|
if (pluginManager.errorList.Any())
|
|
ErrorReporter.ShowErrorPopup("Plugin Load Error", pluginManager.errorList);
|
|
}
|
|
|
|
public CoreViewModel core { get; }
|
|
}
|
|
}
|