Files
@ a321f999a1ea
Branch filter:
Location: ATITD-Tools/Desert-Paint-Codex/Views/ReactionTestView.axaml.cs - annotation
a321f999a1ea
713 B
text/x-csharp
Fix a crash when trying to reorder the reaction list after recording the first reaction in the list.
40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | using System.Reactive;
using System.Reactive.Disposables;
using Avalonia.Markup.Xaml;
using DesertPaintCodex.ViewModels;
using ReactiveUI;
namespace DesertPaintCodex.Views
{
public class ReactionTestView : UserControlBase<ReactionTestViewModel>
{
public ReactionTestView()
{
InitializeComponent();
this.WhenActivated(disposables=>
{
ViewModel?.ShowScreenSettingsDialog.RegisterHandler(ShowDialog<ScreenSettingsView,ScreenSettingsViewModel,Unit>).DisposeWith(disposables);
});
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}
|