1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-12 02:30:57 +09:00

Fix various inspections

This commit is contained in:
Dean Herbert 2022-07-24 23:27:38 +09:00
parent 256d10f96c
commit 39857a4f2c
9 changed files with 20 additions and 15 deletions

View file

@ -44,7 +44,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection
public void AddParagraph(string text, int fontSize = 10)
{
textFlow.AddParagraph(text, p => p.Font = OsuFont.GetFont(size: fontSize-3));
textFlow.AddParagraph(text, p => p.Font = OsuFont.GetFont(size: fontSize - 3));
}
}
}