mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Add option to disable PCP.
This commit is contained in:
parent
e3b7f72893
commit
8043e6fb6b
3 changed files with 5 additions and 1 deletions
|
|
@ -598,6 +598,9 @@ public class SettingsTab : ITab, IUiService
|
|||
Checkbox("Always Open Import at Default Directory",
|
||||
"Open the import window at the location specified here every time, forgetting your previous path.",
|
||||
_config.AlwaysOpenDefaultImport, v => _config.AlwaysOpenDefaultImport = v);
|
||||
Checkbox("Handle PCP Files",
|
||||
"When encountering specific mods, usually but not necessarily denoted by a .pcp file ending, Penumbra will automatically try to create an associated collection and assign it to a specific character for this mod package. This can turn this behaviour off if unwanted.",
|
||||
!_config.DisablePcpHandling, v => _config.DisablePcpHandling = !v);
|
||||
DrawDefaultModImportPath();
|
||||
DrawDefaultModAuthor();
|
||||
DrawDefaultModImportFolder();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue