mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 10:17:23 +01:00
Add tooltip to Mod Associations.
This commit is contained in:
parent
04b376e857
commit
954294b669
1 changed files with 7 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue