mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-23 14:15:42 +00:00
Serialised config settings list has to be public for the auto-xml-ising
* Private variables are skipped by the serialisation unfortunately.
This commit is contained in:
@@ -223,7 +223,7 @@ namespace renderdocui.Code
|
||||
|
||||
[XmlIgnore] // not directly serializable
|
||||
public Dictionary<string, string> ConfigSettings = new Dictionary<string, string>();
|
||||
private List<SerializableKeyValuePair<string, string>> ConfigSettingsValues = new List<SerializableKeyValuePair<string, string>>();
|
||||
public List<SerializableKeyValuePair<string, string>> ConfigSettingsValues = new List<SerializableKeyValuePair<string, string>>();
|
||||
|
||||
public void SetConfigSetting(string name, string value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user