Files @ a321f999a1ea
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/SelectProfileView.axaml.cs - annotation

Jason Maltzen
Fix a crash when trying to reorder the reaction list after recording the first reaction in the list.

using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;


namespace DesertPaintCodex.Views
{
    public class SelectProfileView : ReactiveUserControl<SelectProfileViewModel>

    {
    public SelectProfileView()
    {
        InitializeComponent();
    }

    private void InitializeComponent()
    {
        AvaloniaXamlLoader.Load(this);
    }
    }
}