mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-02 05:43:42 +01:00
Add Incognito modifier.
This commit is contained in:
parent
2fdafc5c85
commit
c3b2443ab5
8 changed files with 37 additions and 19 deletions
|
|
@ -621,6 +621,14 @@ public class SettingsTab : ITab, IUiService
|
|||
_config.DeleteModModifier = v;
|
||||
_config.Save();
|
||||
});
|
||||
Widget.DoubleModifierSelector("Incognito Modifier",
|
||||
"A modifier you need to hold while clicking the Incognito or Temporary Settings Mode button for it to take effect.", UiHelpers.InputTextWidth.X,
|
||||
_config.IncognitoModifier,
|
||||
v =>
|
||||
{
|
||||
_config.IncognitoModifier = v;
|
||||
_config.Save();
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary> Draw all settings pertaining to import and export of mods. </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue