Files @ dd8780bb11c5
Branch filter:

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

Jason Maltzen
Correct an error when computing the clipped value on white shifts. It was incorrectly detecting a white shift on single-color clips, resulting in a bad reaction computation. Also don't display the wrong 'observed' color after clearing a reaction.

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);
    }
    }
}