mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 07:17:53 +01:00
Fix reloading mods not fixing settings, add some messages on IPC.
This commit is contained in:
parent
ceb3bbc5c3
commit
0ec440c388
4 changed files with 103 additions and 23 deletions
|
|
@ -211,6 +211,11 @@ public class ModPanelSettingsTab : ITab
|
|||
var selectedOption = _empty ? (int)group.DefaultSettings : (int)_settings.Settings[groupIdx];
|
||||
var minWidth = Widget.BeginFramedGroup(group.Name, description:group.Description);
|
||||
|
||||
DrawCollapseHandling(group, minWidth, DrawOptions);
|
||||
|
||||
Widget.EndFramedGroup();
|
||||
return;
|
||||
|
||||
void DrawOptions()
|
||||
{
|
||||
for (var idx = 0; idx < group.Count; ++idx)
|
||||
|
|
@ -227,10 +232,6 @@ public class ModPanelSettingsTab : ITab
|
|||
ImGuiComponents.HelpMarker(option.Description);
|
||||
}
|
||||
}
|
||||
|
||||
DrawCollapseHandling(group, minWidth, DrawOptions);
|
||||
|
||||
Widget.EndFramedGroup();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue