mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-30 12:23:41 +01:00
Add the option to omit mch offhands from changed items.
This commit is contained in:
parent
bb56faa288
commit
e85b84dafe
13 changed files with 192 additions and 117 deletions
|
|
@ -428,6 +428,14 @@ public class SettingsTab : ITab
|
|||
_config.Ephemeral.Save();
|
||||
}
|
||||
});
|
||||
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.",
|
||||
_config.HideMachinistOffhandFromChangedItems, v =>
|
||||
{
|
||||
_config.HideMachinistOffhandFromChangedItems = v;
|
||||
_modManager.DiscoverMods();
|
||||
});
|
||||
Checkbox("Hide Priority Numbers in Mod Selector",
|
||||
"Hides the bracketed non-zero priority numbers displayed in the mod selector when there is enough space for them.",
|
||||
_config.HidePrioritiesInSelector, v => _config.HidePrioritiesInSelector = v);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue