mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
Wizard - Skip layout and surface steps when no devices are found Workshop - Fixed crash when opening library
13 lines
321 B
C#
13 lines
321 B
C#
using Artemis.UI.Shared;
|
|
using ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.StartupWizard.Steps;
|
|
|
|
public class FinishStepViewModel : WizardStepViewModel
|
|
{
|
|
public FinishStepViewModel()
|
|
{
|
|
GoBack = ReactiveCommand.Create(() => Wizard.ChangeScreen<SettingsStepViewModel>());
|
|
ShowFinish = true;
|
|
}
|
|
} |