Files
        @ a5faa82faf6a
    
        
              Branch filter: 
        
    Location: ATITD-Tools/Desert-Paint-Codex/Views/AboutView.axaml.cs - annotation
        
            
            a5faa82faf6a
            817 B
            text/x-csharp
        
        
    
    Import and Export should be working correctly. Can now import Practical Paint
reactions.txt files. Fixed a crash taht occurred when switching profiles.
    reactions.txt files. Fixed a crash taht occurred when switching profiles.
| 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 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | using System;
using System.Reactive.Disposables;
using Avalonia;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;
using ReactiveUI;
namespace DesertPaintCodex.Views
{
    public class AboutView : ReactiveWindow<AboutViewModel>
    {
        public AboutView()
        {
            InitializeComponent();
#if DEBUG
            this.AttachDevTools();
#endif
            PointerPressed += (_, e) =>
            {
                PlatformImpl?.BeginMoveDrag(e);
            };
            
            this.WhenActivated(disposables=>
            {
                ViewModel?.CloseDialog.Subscribe(_ => Close()).DisposeWith(disposables);
            });
        }
        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }
    }
}
 |