Merge pull request #184 from Caraxi/fix-ui-visibility

Fix my stupid mistake
This commit is contained in:
goaaats 2020-10-07 23:44:14 +02:00 committed by GitHub
commit 078fdff766
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,6 @@ namespace Dalamud.Game.Internal.Gui.Addon {
public short Y => this.addonStruct.Y;
public float Scale => this.addonStruct.Scale;
public bool Visible => (this.addonStruct.Flags & 0x20) == 1;
public bool Visible => (this.addonStruct.Flags & 0x20) == 0x20;
}
}