Compare commits

...

2 Commits

Author SHA1 Message Date
Anna b1beba7c33
fix: make viewer visible by default 2024-02-22 00:17:06 -05:00
Anna 50fc6fcb34
fix: remove bad import 2024-02-22 00:16:29 -05:00
2 changed files with 2 additions and 3 deletions

View File

@ -12,7 +12,6 @@ using FFXIVClientStructs.FFXIV.Client.UI;
using Newtonsoft.Json;
using Screenie.Ui;
using WebP.Net;
using WebPDotNet;
namespace Screenie;

View File

@ -13,7 +13,7 @@ internal class Viewer : IDrawable {
private IDalamudTextureWrap? Image { get; set; }
private Exception? Error { get; set; }
private bool _disposed;
private bool _visible;
private bool _visible = true;
internal string ImagePath { get; }
internal Vector2? DotPosition { get; set; }
@ -105,4 +105,4 @@ internal class Viewer : IDrawable {
return DrawStatus.Continuing;
}
}
}