The current version of the AudioPluginHost doesn’t seem to save the ‘Enable DPI awareness’ state of each plugin.
Adding the following two lines of code solved this for me:
In PluginGraph::createNodeXml ():
e->setAttribute(“DPIAware”, node->properties[“DPIAware”].toString());
In PluginGraph::createNodeFromXml():
node->properties.set(“DPIAware”, xml.getDoubleAttribute(“DPIAware”));
Both should go directly under the lines where the similar “x” & “y” properties are set.
