mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
ModlistGallerySettingsView -> MiscSettingsView
This commit is contained in:
parent
9072a66318
commit
446ed80f98
@ -1,5 +1,5 @@
|
||||
<rxui:ReactiveUserControl
|
||||
x:Class="Wabbajack.ModlistGallerySettingsView"
|
||||
x:Class="Wabbajack.MiscSettingsView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
@ -21,11 +21,11 @@ using Wabbajack.Lib.WebAutomation;
|
||||
namespace Wabbajack
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ModlistGallerySettingsView.xaml
|
||||
/// Interaction logic for MiscSettingsView.xaml
|
||||
/// </summary>
|
||||
public partial class ModlistGallerySettingsView : ReactiveUserControl<FiltersSettings>
|
||||
public partial class MiscSettingsView : ReactiveUserControl<FiltersSettings>
|
||||
{
|
||||
public ModlistGallerySettingsView()
|
||||
public MiscSettingsView()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
@ -43,7 +43,7 @@
|
||||
<WrapPanel>
|
||||
<local:LoginSettingsView x:Name="LoginView" />
|
||||
<local:PerformanceSettingsView x:Name="PerformanceView" />
|
||||
<local:ModlistGallerySettingsView x:Name="ModlistGalleryView" />
|
||||
<local:MiscSettingsView x:Name="MiscGalleryView" />
|
||||
<local:AuthorFilesView x:Name="AuthorFilesView" />
|
||||
</WrapPanel>
|
||||
</ScrollViewer>
|
||||
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user