fixed frame hidden property

This commit is contained in:
Peter Schojer
2008-09-19 08:19:07 +00:00
parent 59bb2b3c8a
commit 3a1715de5b

View File

@@ -103,6 +103,8 @@ void FrameRenderer::writeProperties(const Frame* pFrame, std::ostream& ostr)
ostr << ",collapsible:true";
if (pFrame->collapsed())
ostr << ",collapsed:true";
if (!pFrame->isVisible())
ostr << ",hidden:true";
}