Files @ 70b1de28b2a2
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/ViewModels/AboutViewModel.cs

Jason Maltzen
Re-enable the ability to save debug screenshots based on a setting value to help debug reaction capturing. Update the README to correctly reflect the debug.screenshot setting name, location of the settings file, and removal of the old debug menu.
using System.Reactive;
using ReactiveUI;

namespace DesertPaintCodex.ViewModels
{
    public class AboutViewModel : ViewModelBase
    {
        private const string AboutTextLiteral =
            @"Desert Paint Codex (formerly Desert Paint Lab) is an Open Source project available for free under the MIT License.";
        
        private string _aboutText = AboutTextLiteral;
        public string AboutText { get => _aboutText; private set => this.RaiseAndSetIfChanged(ref _aboutText, value); }

        public AboutViewModel()
        {
            CloseDialog = ReactiveCommand.Create(() => { });
        }
        
        public ReactiveCommand<Unit, Unit> CloseDialog { get; }
    }
}