mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 03:49:19 +01:00
Miscellaneous fixes
This commit is contained in:
parent
6116508c57
commit
12e2fd3f60
2 changed files with 109 additions and 56 deletions
|
|
@ -212,7 +212,7 @@ public sealed class UiBuilder : IDisposable
|
|||
/// <code>
|
||||
/// fontAtlas.NewDelegateFontHandle(
|
||||
/// e => e.OnPreBuild(
|
||||
/// tk => tk.AddDalamudDefaultFont(UiBuilder.DefaultFontSizePt)));
|
||||
/// tk => tk.AddDalamudDefaultFont(UiBuilder.DefaultFontSizePx)));
|
||||
/// </code>
|
||||
/// </remarks>
|
||||
public IFontHandle DefaultFontHandle =>
|
||||
|
|
@ -231,6 +231,8 @@ public sealed class UiBuilder : IDisposable
|
|||
/// fontAtlas.NewDelegateFontHandle(
|
||||
/// e => e.OnPreBuild(
|
||||
/// tk => tk.AddFontAwesomeIconFont(new() { SizePt = UiBuilder.DefaultFontSizePt })));
|
||||
/// // or use
|
||||
/// tk => tk.AddFontAwesomeIconFont(new() { SizePx = UiBuilder.DefaultFontSizePx })));
|
||||
/// </code>
|
||||
/// </remarks>
|
||||
public IFontHandle IconFontHandle =>
|
||||
|
|
@ -251,6 +253,8 @@ public sealed class UiBuilder : IDisposable
|
|||
/// tk => tk.AddDalamudAssetFont(
|
||||
/// DalamudAsset.InconsolataRegular,
|
||||
/// new() { SizePt = UiBuilder.DefaultFontSizePt })));
|
||||
/// // or use
|
||||
/// new() { SizePx = UiBuilder.DefaultFontSizePx })));
|
||||
/// </code>
|
||||
/// </remarks>
|
||||
public IFontHandle MonoFontHandle =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue