Hi, I try also follow advice to make model on first tab visible but on ubuntu 
12.10 qt 4.8.3 and osg svn It doesn't work
I modify event method like this

Code:

virtual bool event( QEvent* event )
{
if (event->type() == QEvent::Timer)
{
if (static_cast<QTimerEvent*>(event)->timerId() == _timerId)
{
frame();
return true;
}
}
if (event->type() == QEvent::Resize)
{
return false;
}
return QWidget::event(event);
}




Any hints?

... 

Thank you!

Cheers,
Roman

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=50904#50904





_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to