diff --git a/Wabbajack/View Models/Installers/InstallerVM.cs b/Wabbajack/View Models/Installers/InstallerVM.cs index 4ef2f253..de0d400e 100644 --- a/Wabbajack/View Models/Installers/InstallerVM.cs +++ b/Wabbajack/View Models/Installers/InstallerVM.cs @@ -96,9 +96,9 @@ namespace Wabbajack public bool IsActive => _IsActive.Value; // Command properties - public ReactiveCommand ShowReportCommand { get; } + public ReactiveCommand ShowManifestCommand { get; } public ReactiveCommand OpenReadmeCommand { get; } - public ReactiveCommand VisitWebsiteCommand { get; } + public ReactiveCommand VisitModListWebsiteCommand { get; } public ReactiveCommand BackCommand { get; } public ReactiveCommand CloseWhenCompleteCommand { get; } public ReactiveCommand GoToInstallCommand { get; } @@ -317,13 +317,13 @@ namespace Wabbajack .ToGuiProperty(this, nameof(ModListName)); // Define commands - ShowReportCommand = ReactiveCommand.Create(ShowReport); + ShowManifestCommand = ReactiveCommand.Create(ShowReport); OpenReadmeCommand = ReactiveCommand.Create( execute: () => this.ModList?.OpenReadmeWindow(), canExecute: this.WhenAny(x => x.ModList) .Select(modList => !string.IsNullOrEmpty(modList?.Readme)) .ObserveOnGuiThread()); - VisitWebsiteCommand = ReactiveCommand.Create( + VisitModListWebsiteCommand = ReactiveCommand.Create( execute: () => { Process.Start(ModList.Website); diff --git a/Wabbajack/View Models/SlideShow.cs b/Wabbajack/View Models/SlideShow.cs index 7a64cacd..6ccba2ad 100644 --- a/Wabbajack/View Models/SlideShow.cs +++ b/Wabbajack/View Models/SlideShow.cs @@ -32,8 +32,8 @@ namespace Wabbajack private readonly ObservableAsPropertyHelper _targetMod; public ModVM TargetMod => _targetMod.Value; - public IReactiveCommand SlideShowNextItemCommand { get; } = ReactiveCommand.Create(() => { }); - public IReactiveCommand VisitNexusSiteCommand { get; } + public ReactiveCommand SlideShowNextItemCommand { get; } = ReactiveCommand.Create(() => { }); + public ReactiveCommand VisitNexusSiteCommand { get; } public const int PreloadAmount = 4; @@ -119,7 +119,11 @@ namespace Wabbajack .ToGuiProperty(this, nameof(Image)); VisitNexusSiteCommand = ReactiveCommand.Create( - execute: () => Process.Start(TargetMod.ModURL), + execute: () => + { + Process.Start(TargetMod.ModURL); + return Unit.Default; + }, canExecute: this.WhenAny(x => x.TargetMod.ModURL) .Select(x => x?.StartsWith("https://") ?? false) .ObserveOnGuiThread()); diff --git a/Wabbajack/Views/Installers/InstallationView.xaml b/Wabbajack/Views/Installers/InstallationView.xaml index 149ac64c..773a75c6 100644 --- a/Wabbajack/Views/Installers/InstallationView.xaml +++ b/Wabbajack/Views/Installers/InstallationView.xaml @@ -1,4 +1,4 @@ -