feat: add FontAwesome to font debug

This commit is contained in:
goat 2020-08-14 15:48:41 +02:00
parent 6a539ee46c
commit 5c0c3c9a0a

View file

@ -153,6 +153,15 @@ namespace Dalamud.Interface
}
ImGui.TextUnformatted(specialChars);
foreach (var fontAwesomeIcon in Enum.GetValues(typeof(FontAwesomeIcon)).Cast<FontAwesomeIcon>()) {
ImGui.Text(((int) fontAwesomeIcon.ToIconChar()).ToString("X") + " - ");
ImGui.SameLine();
ImGui.PushFont(InterfaceManager.IconFont);
ImGui.Text(fontAwesomeIcon.ToIconString());
ImGui.PopFont();
}
break;
// Party