mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Fixed startup wizard
This commit is contained in:
parent
1b62109961
commit
86f96f1308
@ -52,7 +52,7 @@ public class StartupWizardViewModel : DialogViewModelBase<bool>
|
|||||||
DeviceProviders = new ObservableCollection<PluginViewModel>(pluginManagementService.GetAllPlugins()
|
DeviceProviders = new ObservableCollection<PluginViewModel>(pluginManagementService.GetAllPlugins()
|
||||||
.Where(p => p.Info.IsCompatible && p.Features.Any(f => f.AlwaysEnabled && f.FeatureType.IsAssignableTo(typeof(DeviceProvider))))
|
.Where(p => p.Info.IsCompatible && p.Features.Any(f => f.AlwaysEnabled && f.FeatureType.IsAssignableTo(typeof(DeviceProvider))))
|
||||||
.OrderBy(p => p.Info.Name)
|
.OrderBy(p => p.Info.Name)
|
||||||
.Select(p => settingsVmFactory.PluginViewModel(p, null)));
|
.Select(p => settingsVmFactory.PluginViewModel(p, ReactiveCommand.Create(() => new Unit()))));
|
||||||
|
|
||||||
CurrentStep = 1;
|
CurrentStep = 1;
|
||||||
SetupButtons();
|
SetupButtons();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user