Files @ d16a2d816aa5
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Services/SettingKey.cs

Jason Maltzen
Don't open the recipe generator log file on view creation - only open it if configured when starting recipe generation. Fixes a crash when importing reaction data / profile data.
namespace DesertPaintCodex.Services
{
    public static class SettingKey
    {
        public const string PixelMultiplier = "pixelmultiplier";
        public const string ScreenIndex     = "screenindex";
        public const string ScreenX         = "screenx";
        public const string ScreenY         = "screeny";
        public const string ScreenWidth     = "screenwidth";
        public const string ScreenHeight    = "screenheight";
    }
}