fix(ui): use FontAwesome Hourglass for coming-soon items

This commit is contained in:
2026-05-06 20:25:44 +02:00
parent b2f158f893
commit 33a4d94c44
+3 -1
View File
@@ -1,4 +1,5 @@
using Dalamud.Bindings.ImGui; using Dalamud.Bindings.ImGui;
using Dalamud.Interface;
using Dalamud.Interface.Utility.Raii; using Dalamud.Interface.Utility.Raii;
using HellionChat.Branding; using HellionChat.Branding;
using HellionChat.Resources; using HellionChat.Resources;
@@ -134,8 +135,9 @@ internal sealed class Integrations : ISettingsTab
{ {
var theme = Plugin.ThemeRegistry.Active; var theme = Plugin.ThemeRegistry.Active;
using (ImRaii.PushColor(ImGuiCol.Text, ColourUtil.RgbaToAbgr(theme.Colors.TextMuted))) using (ImRaii.PushColor(ImGuiCol.Text, ColourUtil.RgbaToAbgr(theme.Colors.TextMuted)))
using (Plugin.FontManager.FontAwesome.Push())
{ {
ImGui.TextUnformatted("◌"); ImGui.TextUnformatted(FontAwesomeIcon.Hourglass.ToIconString());
} }
ImGui.SameLine(); ImGui.SameLine();
ImGui.TextUnformatted(title); ImGui.TextUnformatted(title);