Skip to content

Commit

Permalink
fixes: Fixed card tooltip not dismissing
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlendea committed Apr 5, 2024
1 parent 2a21a6c commit 807003f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gui/GuiElements/GuiHoldingCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ public void SetHoldingProperties(Holding holding)
HoldingName = holding.Name;
}

public override void Hide()
{
base.Hide();
tooltip.Hide();
}

protected override void DoLoadContent()
{
icon = new GuiImage
Expand Down

0 comments on commit 807003f

Please sign in to comment.