]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix for '23552: Unable to use the contextual menu of Object Browser window' issue... rnv/23552
authorrnv <rnv@opencascade.com>
Tue, 29 May 2018 13:47:07 +0000 (16:47 +0300)
committerrnv <rnv@opencascade.com>
Tue, 29 May 2018 13:47:07 +0000 (16:47 +0300)
src/GEOMGUI/GeometryGUI.cxx

index 27284a2151216535b6e3e82e6a59872e01bf0b75..7dd7a7eb3f25a0d966b386070f35fb1b5b88c8eb 100755 (executable)
@@ -2266,7 +2266,11 @@ void GeometryGUI::contextMenuPopup( const QString& client, QMenu* menu, QString&
   getApp()->selectionMgr()->selectedObjects( lst );
 
   //Add submenu for predefined materials
-  bool isPredefMat = SUIT_Session::session()->resourceMgr()->booleanValue( "Geometry", "predef_materials" );
+  // RNV: '#23552: Unable to use the contextual menu of Object Browser window' issue: 
+  //      Temporary solution: do not show 'Materials' submenu forcibly
+  //bool isPredefMat = SUIT_Session::session()->resourceMgr()->booleanValue( "Geometry", "predef_materials" );
+  bool isPredefMat = false;
+  
   if ( ( client == "OCCViewer" || client == "VTKViewer" ) && lst.Extent() > 0 ) {
     QtxPopupMgr* mgr = popupMgr();
     //get parrent for submenu
@@ -2386,7 +2390,7 @@ void GeometryGUI::createPreferences()
   int defl = addPreference( tr( "PREF_DEFLECTION" ), genGroup,
                             LightApp_Preferences::DblSpin, "Geometry", "deflection_coeff" );
 
-  // Temporary hide this preference, because of the '#23552: Unable to use the contextual menu of Object Browser window' issue
+  // RNV: Temporary hide this preference, because of the '#23552: Unable to use the contextual menu of Object Browser window' issue
   //addPreference( tr( "PREF_PREDEF_MATERIALS" ), genGroup,
   //               LightApp_Preferences::Bool, "Geometry", "predef_materials" );