fix: make viewer visible by default

This commit is contained in:
Anna 2024-02-22 00:17:06 -05:00
parent 50fc6fcb34
commit b1beba7c33
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 2 additions and 2 deletions

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;
}
}
}