mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-31 21:03:48 +01:00
Add option to clear non-ascii symbols from paths again.
This commit is contained in:
parent
b14cd26e4e
commit
59ea1f2dd6
13 changed files with 56 additions and 62 deletions
|
|
@ -535,6 +535,9 @@ public class SettingsTab : ITab
|
|||
/// <summary> Draw all settings pertaining to import and export of mods. </summary>
|
||||
private void DrawModHandlingSettings()
|
||||
{
|
||||
Checkbox("Replace Non-Standard Symbols On Import",
|
||||
"Replace all non-ASCII symbols in mod and option names with underscores when importing mods.", _config.ReplaceNonAsciiOnImport,
|
||||
v => _config.ReplaceNonAsciiOnImport = v);
|
||||
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue