mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 15:27:51 +01:00
Allow configuration of the changed item display.
This commit is contained in:
parent
26985e01a2
commit
13adbd5466
4 changed files with 144 additions and 26 deletions
|
|
@ -445,6 +445,15 @@ public class SettingsTab : ITab, IUiService
|
|||
_config.Ephemeral.Save();
|
||||
}
|
||||
});
|
||||
|
||||
ChangedItemModeExtensions.DrawCombo("##ChangedItemMode"u8, _config.ChangedItemDisplay, UiHelpers.InputTextWidth.X, v =>
|
||||
{
|
||||
_config.ChangedItemDisplay = v;
|
||||
_config.Save();
|
||||
});
|
||||
ImUtf8.LabeledHelpMarker("Mod Changed Item Display"u8,
|
||||
"Configure how to display the changed items of a single mod in the mods info panel."u8);
|
||||
|
||||
Checkbox("Omit Machinist Offhands in Changed Items",
|
||||
"Omits all Aetherotransformers (machinist offhands) in the changed items tabs because any change on them changes all of them at the moment.\n\n"
|
||||
+ "Changing this triggers a rediscovery of your mods so all changed items can be updated.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue