mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 23:24:15 +01:00
add back heels info to settings
This commit is contained in:
parent
782ec873f6
commit
10a6dbda54
1 changed files with 7 additions and 0 deletions
|
|
@ -114,9 +114,11 @@ namespace MareSynchronos.UI
|
||||||
{
|
{
|
||||||
var penumbraExists = _ipcManager.CheckPenumbraApi();
|
var penumbraExists = _ipcManager.CheckPenumbraApi();
|
||||||
var glamourerExists = _ipcManager.CheckGlamourerApi();
|
var glamourerExists = _ipcManager.CheckGlamourerApi();
|
||||||
|
var heelsExists = _ipcManager.CheckHeelsApi();
|
||||||
|
|
||||||
var penumbraColor = penumbraExists ? ImGuiColors.ParsedGreen : ImGuiColors.DalamudRed;
|
var penumbraColor = penumbraExists ? ImGuiColors.ParsedGreen : ImGuiColors.DalamudRed;
|
||||||
var glamourerColor = glamourerExists ? ImGuiColors.ParsedGreen : ImGuiColors.DalamudRed;
|
var glamourerColor = glamourerExists ? ImGuiColors.ParsedGreen : ImGuiColors.DalamudRed;
|
||||||
|
var heelsColor = heelsExists ? ImGuiColors.ParsedGreen : ImGuiColors.DalamudRed;
|
||||||
ImGui.Text("Penumbra:");
|
ImGui.Text("Penumbra:");
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.TextColored(penumbraColor, penumbraExists ? "Available" : "Unavailable");
|
ImGui.TextColored(penumbraColor, penumbraExists ? "Available" : "Unavailable");
|
||||||
|
|
@ -124,6 +126,11 @@ namespace MareSynchronos.UI
|
||||||
ImGui.Text("Glamourer:");
|
ImGui.Text("Glamourer:");
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.TextColored(glamourerColor, glamourerExists ? "Available" : "Unavailable");
|
ImGui.TextColored(glamourerColor, glamourerExists ? "Available" : "Unavailable");
|
||||||
|
ImGui.Text("Optional Addons");
|
||||||
|
ImGui.SameLine();
|
||||||
|
ImGui.Text("Heels:");
|
||||||
|
ImGui.SameLine();
|
||||||
|
ImGui.TextColored(heelsColor, heelsExists ? "Available" : "Unavailable");
|
||||||
|
|
||||||
if (!penumbraExists || !glamourerExists)
|
if (!penumbraExists || !glamourerExists)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue