Fix a couple of minor issues and a possible crash when closing a document with several MDI views

This commit is contained in:
wmayer
2012-03-11 18:37:28 +01:00
parent abd97c83f1
commit 171112a2fd
8 changed files with 41 additions and 14 deletions

View File

@@ -1636,6 +1636,16 @@ void View3DInventorViewer::stopAnimating(void)
navigation->stopAnimating();
}
void View3DInventorViewer::setPopupMenuEnabled(const SbBool on)
{
navigation->setPopupMenuEnabled(on);
}
SbBool View3DInventorViewer::isPopupMenuEnabled(void) const
{
return navigation->isPopupMenuEnabled();
}
/*!
Set the flag deciding whether or not to show the axis cross.
*/