SUIT_DataBrowser* db = app->objectBrowser();
if ( !db ) return;
SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( db->model() );
- if ( treeModel )
+ if ( treeModel ) {
treeModel->setVisibilityState( theEntry, theState );
+ emit objVisibilityChanged( theEntry, theState );
+ }
}
/*!
void closed ( SUIT_Study* );
void created( SUIT_Study* );
+ void objVisibilityChanged( QString, Qtx::VisibilityState );
+
private:
LightApp_Driver* myDriver;