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:
baldurk
2017-04-17 12:28:42 +01:00
parent 1be2e1086a
commit d81f708f8c
+1 -1
View File
@@ -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)
{