Flesh out crafting log window

This commit is contained in:
Asriel Camora
2023-06-29 12:46:17 -07:00
parent 84d63ae4d7
commit 9481f67cf3
3 changed files with 83 additions and 16 deletions
+9
View File
@@ -1,3 +1,4 @@
using Dalamud.Interface;
using ImGuiNET;
using System;
using System.Collections.Generic;
@@ -122,4 +123,12 @@ internal static class ImGuiUtils
ImGui.EndGroup();
}
public static bool IconButtonSized(FontAwesomeIcon icon, Vector2 size)
{
ImGui.PushFont(UiBuilder.IconFont);
var ret = ImGui.Button(icon.ToIconString(), size);
ImGui.PopFont();
return ret;
}
}