mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-03-25 02:38:48 +00:00
Wizard - Skip layout and surface steps when no devices are found Workshop - Fixed crash when opening library
12 lines
300 B
C#
12 lines
300 B
C#
using ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.StartupWizard.Steps;
|
|
|
|
public class WelcomeStepViewModel : WizardStepViewModel
|
|
{
|
|
public WelcomeStepViewModel()
|
|
{
|
|
Continue = ReactiveCommand.Create(() => Wizard.ChangeScreen<DevicesStepViewModel>());
|
|
ShowGoBack = false;
|
|
}
|
|
} |