From 446ed80f98f2b49afa1db2ff8cf3a986038a2b71 Mon Sep 17 00:00:00 2001 From: Justin Swanson Date: Sat, 8 Aug 2020 07:48:04 -0500 Subject: [PATCH] ModlistGallerySettingsView -> MiscSettingsView --- ...odlistGallerySettingsView.xaml => MiscSettingsView.xaml} | 2 +- ...GallerySettingsView.xaml.cs => MiscSettingsView.xaml.cs} | 6 +++--- Wabbajack/Views/Settings/SettingsView.xaml | 2 +- Wabbajack/Views/Settings/SettingsView.xaml.cs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename Wabbajack/Views/Settings/{ModlistGallerySettingsView.xaml => MiscSettingsView.xaml} (98%) rename Wabbajack/Views/Settings/{ModlistGallerySettingsView.xaml.cs => MiscSettingsView.xaml.cs} (85%) diff --git a/Wabbajack/Views/Settings/ModlistGallerySettingsView.xaml b/Wabbajack/Views/Settings/MiscSettingsView.xaml similarity index 98% rename from Wabbajack/Views/Settings/ModlistGallerySettingsView.xaml rename to Wabbajack/Views/Settings/MiscSettingsView.xaml index 990c4032..fbec8781 100644 --- a/Wabbajack/Views/Settings/ModlistGallerySettingsView.xaml +++ b/Wabbajack/Views/Settings/MiscSettingsView.xaml @@ -1,5 +1,5 @@  - /// Interaction logic for ModlistGallerySettingsView.xaml + /// Interaction logic for MiscSettingsView.xaml /// - public partial class ModlistGallerySettingsView : ReactiveUserControl + public partial class MiscSettingsView : ReactiveUserControl { - public ModlistGallerySettingsView() + public MiscSettingsView() { InitializeComponent(); diff --git a/Wabbajack/Views/Settings/SettingsView.xaml b/Wabbajack/Views/Settings/SettingsView.xaml index f4a93485..479a9803 100644 --- a/Wabbajack/Views/Settings/SettingsView.xaml +++ b/Wabbajack/Views/Settings/SettingsView.xaml @@ -43,7 +43,7 @@ - + diff --git a/Wabbajack/Views/Settings/SettingsView.xaml.cs b/Wabbajack/Views/Settings/SettingsView.xaml.cs index b3237bbf..603b8fdf 100644 --- a/Wabbajack/Views/Settings/SettingsView.xaml.cs +++ b/Wabbajack/Views/Settings/SettingsView.xaml.cs @@ -34,7 +34,7 @@ namespace Wabbajack .DisposeWith(disposable); this.OneWayBindStrict(this.ViewModel, x => x.Performance, x => x.PerformanceView.ViewModel) .DisposeWith(disposable); - this.OneWayBindStrict(this.ViewModel, x => x.Filters, x => x.ModlistGalleryView.ViewModel) + this.OneWayBindStrict(this.ViewModel, x => x.Filters, x => x.MiscGalleryView.ViewModel) .DisposeWith(disposable); }); }