From 954294b6692cbdb461996ee5a874a3d32a2397c1 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Tue, 26 Sep 2023 18:11:15 +0200 Subject: [PATCH] Add tooltip to Mod Associations. --- Glamourer/Gui/Tabs/DesignTab/ModAssociationsTab.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Glamourer/Gui/Tabs/DesignTab/ModAssociationsTab.cs b/Glamourer/Gui/Tabs/DesignTab/ModAssociationsTab.cs index 38cb811..6ae51ad 100644 --- a/Glamourer/Gui/Tabs/DesignTab/ModAssociationsTab.cs +++ b/Glamourer/Gui/Tabs/DesignTab/ModAssociationsTab.cs @@ -27,7 +27,13 @@ public class ModAssociationsTab public void Draw() { - if (!ImGui.CollapsingHeader("Mod Associations")) + var headerOpen = ImGui.CollapsingHeader("Mod Associations"); + ImGuiUtil.HoverTooltip( + "This tab can store information about specific mods associated with this design.\n\n" + + "It does NOT change any mod settings automatically, though there is functionality to apply desired mod settings manually.\n" + + "You can also use it to quickly open the associated mod page in Penumbra.\n\n" + + "It is not feasible to apply those changes automatically in general cases, since there would be no way to revert those changes, handle multiple designs applying at once, etc."); + if (!headerOpen) return; DrawApplyAllButton();