Keep messages open after transfer
This commit is contained in:
10
Settings.cs
10
Settings.cs
@@ -32,6 +32,7 @@ namespace UIFixes
|
||||
// General
|
||||
public static ConfigEntry<WeaponPresetConfirmationOption> ShowPresetConfirmations { get; set; }
|
||||
public static ConfigEntry<TransferConfirmationOption> ShowTransferConfirmations { get; set; }
|
||||
public static ConfigEntry<bool> KeepMessagesOpen { get; set; }
|
||||
public static ConfigEntry<bool> AutofillQuestTurnIns { get; set; }
|
||||
public static ConfigEntry<bool> AutoSwitchTrading { get; set; }
|
||||
|
||||
@@ -93,6 +94,15 @@ namespace UIFixes
|
||||
null,
|
||||
new ConfigurationManagerAttributes { })));
|
||||
|
||||
configEntries.Add(KeepMessagesOpen = config.Bind(
|
||||
GeneralSection,
|
||||
"Keep Messages Window Open After Transfer",
|
||||
true,
|
||||
new ConfigDescription(
|
||||
"After receiving items from a transfer, reopen the messages window where you left off",
|
||||
null,
|
||||
new ConfigurationManagerAttributes { })));
|
||||
|
||||
configEntries.Add(AutofillQuestTurnIns = config.Bind(
|
||||
GeneralSection,
|
||||
"Autofill Quest Item Turn-ins",
|
||||
|
||||
Reference in New Issue
Block a user