Hi,
yes, you're right, thanks!
We now updated to:
Code:
if (name.equals("layoutbuffer"))
{
String value = attributes.getValue("active");
if (value == null)
value = attributes.getValue("name"); // compatibility with previous version
s_layoutbufferActive = ValueManager.decodeBoolean(value,true);
}
...so both "active" and "name" will work. Fortunately the parameter layoutbuffer is normally not used...
Björn