]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
IPAL 19144 - No toolbar in Gauss Viewer
authornkv <nkv@opencascade.com>
Mon, 24 Mar 2008 09:59:51 +0000 (09:59 +0000)
committernkv <nkv@opencascade.com>
Mon, 24 Mar 2008 09:59:51 +0000 (09:59 +0000)
src/Qtx/QtxActionToolMgr.cxx

index f234f2dcbc29b65399f72f9f8c97f038489e8cfe..e2c4b2048820d0ebdb3ce1bbf810c39b2e014ab8 100644 (file)
@@ -102,8 +102,10 @@ int QtxActionToolMgr::createToolBar( const QString& title, const int tid, QMainW
   int tbId = -1;
   for ( ToolBarMap::ConstIterator it = myToolBars.begin(); it != myToolBars.end() && tbId == -1; ++it )
   {
-    if ( it.value().toolBar->windowTitle().toLower() == title.toLower() )
-      tbId = it.key();
+    // NKV - BUG IPAL19144 - search by toolbar title is done below via find() function
+    // if ( it.value().toolBar->windowTitle().toLower() == title.toLower() )
+    //   tbId = it.key();
+    if (it.key() == tid) tbId = it.key();
   }
 
   if ( tbId != -1 )