Keep messages open after transfer

This commit is contained in:
Tyfon
2024-05-31 15:32:32 -07:00
parent fc948fff71
commit a9c60d33e7
4 changed files with 69 additions and 0 deletions

View File

@@ -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",