mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-20 06:47:46 +01:00
Add a configuration to disable showing mods in the lobby and at the aesthetician.
This commit is contained in:
parent
c8ea33f8dd
commit
447735f609
3 changed files with 17 additions and 0 deletions
|
|
@ -449,6 +449,9 @@ public class SettingsTab : ITab
|
|||
Checkbox("Use Interface Collection for other Plugin UIs",
|
||||
"Use the collection assigned to your interface for other plugins requesting UI-textures and icons through Dalamud.",
|
||||
_dalamudSubstitutionProvider.Enabled, _dalamudSubstitutionProvider.Set);
|
||||
Checkbox($"Use {TutorialService.AssignedCollections} in Lobby",
|
||||
"If this is disabled, no mods are applied to characters in the lobby or at the aesthetician.",
|
||||
_config.ShowModsInLobby, v => _config.ShowModsInLobby = v);
|
||||
Checkbox($"Use {TutorialService.AssignedCollections} in Character Window",
|
||||
"Use the individual collection for your characters name or the Your Character collection in your main character window, if it is set.",
|
||||
_config.UseCharacterCollectionInMainWindow, v => _config.UseCharacterCollectionInMainWindow = v);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue