From d81f708f8c00b8ddc3bba323abd4803e950f0426 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 17 Apr 2017 12:28:42 +0100 Subject: [PATCH] Serialised config settings list has to be public for the auto-xml-ising * Private variables are skipped by the serialisation unfortunately. --- renderdocui/Code/PersistantConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdocui/Code/PersistantConfig.cs b/renderdocui/Code/PersistantConfig.cs index 2347713b7..4aea67c33 100644 --- a/renderdocui/Code/PersistantConfig.cs +++ b/renderdocui/Code/PersistantConfig.cs @@ -223,7 +223,7 @@ namespace renderdocui.Code [XmlIgnore] // not directly serializable public Dictionary ConfigSettings = new Dictionary(); - private List> ConfigSettingsValues = new List>(); + public List> ConfigSettingsValues = new List>(); public void SetConfigSetting(string name, string value) {