Skip to content

Commit

Permalink
Added back missing SubtitleFont
Browse files Browse the repository at this point in the history
Fixes #155
  • Loading branch information
justalemon committed Dec 20, 2023
1 parent fe77edf commit d4257ce
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion LemonUI/Menus/NativeMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ public bool Visible
}
}
}

/// <summary>
/// The text shown on top of the banner.
/// </summary>
Expand All @@ -317,6 +316,15 @@ public Font TitleFont
/// <summary>
/// The font of name text.
/// </summary>
[Obsolete("Please use NameFont instead.", true)]
public Font SubtitleFont
{
get => nameText.Font;
set => nameText.Font = value;
}
/// <summary>
/// The font of name text.
/// </summary>
public Font NameFont
{
get => nameText.Font;
Expand Down

0 comments on commit d4257ce

Please sign in to comment.