mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 11:59:21 +01:00
Ref to Config.DevSettings was not updating
This commit is contained in:
parent
2302f15c84
commit
bfc7d634ce
3 changed files with 7 additions and 25 deletions
|
|
@ -85,9 +85,12 @@ namespace Dalamud.Configuration.Internal
|
|||
public List<string> HiddenPluginInternalName { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a list of additional settings for devPlugins.
|
||||
/// Gets or sets a list of additional settings for devPlugins. The key is the absolute path
|
||||
/// to the plugin DLL. This is automatically generated for any plugins in the devPlugins folder.
|
||||
/// However by specifiying this value manually, you can add arbitrary files outside the normal
|
||||
/// file paths.
|
||||
/// </summary>
|
||||
public List<DevPluginSettings> DevPluginSettings { get; set; } = new();
|
||||
public Dictionary<string, DevPluginSettings> DevPluginSettings { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the global UI scale.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue