mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-12 01:30:36 +05:00
Call emitOperationFinished(...) method of the application when a command is commited.
This commit is contained in:
parent
710a59a7bf
commit
bf4c72d227
@ -881,8 +881,13 @@ bool GEOMBase_Helper::onAccept( const bool publish, const bool useTransaction, b
|
||||
updateObjBrowser();
|
||||
if( SUIT_Application* anApp = SUIT_Session::session()->activeApplication() ) {
|
||||
LightApp_Application* aLightApp = dynamic_cast<LightApp_Application*>( anApp );
|
||||
if(aLightApp && !isDisableBrowsing() )
|
||||
if(aLightApp) {
|
||||
QString anOpName( typeid(*this).name() );
|
||||
aLightApp->emitOperationFinished( "Geometry", anOpName, anEntryList );
|
||||
|
||||
if ( !isDisableBrowsing() )
|
||||
aLightApp->browseObjects( anEntryList, isApplyAndClose(), isOptimizedBrowsing() );
|
||||
}
|
||||
anApp->putInfo( QObject::tr("GEOM_PRP_DONE") );
|
||||
}
|
||||
result = true;
|
||||
|
Loading…
Reference in New Issue
Block a user