Files @ dd8780bb11c5
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/EmbeddedWarningBox.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;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;

namespace DesertPaintCodex.Views
{
    public class EmbeddedWarningBox : UserControl
    {
        public static readonly StyledProperty<string> TitleProperty =
            AvaloniaProperty.Register<EmbeddedWarningBox, string>(nameof(Title));
        public string Title { get => GetValue(TitleProperty); set => SetValue(TitleProperty, value); }
        
        public static readonly StyledProperty<string> MessageProperty =
            AvaloniaProperty.Register<EmbeddedWarningBox, string>(nameof(Message));
        public string Message { get => GetValue(MessageProperty); set => SetValue(MessageProperty, value); }
        
        
        public EmbeddedWarningBox()
        {
            InitializeComponent();
        }

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