Add priority display to mod selector.

This commit is contained in:
Ottermandias 2023-08-01 13:11:33 +02:00
parent 3738b5f8f0
commit a95877b9e4
5 changed files with 34 additions and 3 deletions

View file

@ -379,6 +379,9 @@ public class SettingsTab : ITab
if (v)
_config.ChangedItemFilter = ChangedItemDrawer.AllFlags;
});
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);
DrawSingleSelectRadioMax();
DrawCollapsibleGroupMin();
}