fix(ui): use FontAwesome Hourglass for coming-soon items
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user