Salome HOME
Issue '23049: [CEA 1475] Increase the size of some dialog boxes': fix first part.
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_ObjectReferenceParamWdg.cxx
index db42e8484dc94ae13c50367d08d2a582e3f7c223..649d1e5ab774d51dc39c7f619adfc6f24ad873de 100644 (file)
 //================================================================================
 
 StdMeshersGUI_ObjectReferenceParamWdg::StdMeshersGUI_ObjectReferenceParamWdg
-( SUIT_SelectionFilter* f, QWidget* parent, bool multiSelection, bool stretch )
+( SUIT_SelectionFilter* f, QWidget* parent, bool multiSelection 
+  /*, bool stretch */)
   : QWidget( parent ), myMultiSelection( multiSelection )
 {
   myFilter = f;
-  myStretchActivated = stretch;
+  // myStretchActivated = stretch;
   init();
 }
 
@@ -123,12 +124,13 @@ void StdMeshersGUI_ObjectReferenceParamWdg::init()
   myObjNameLineEdit = new QLineEdit(this);
   myObjNameLineEdit->setReadOnly(true);
   myObjNameLineEdit->setStyleSheet(myEmptyStyleSheet);
+  myObjNameLineEdit->setMinimumWidth(200);
 
   aHBox->addWidget( mySelButton );
   aHBox->addWidget( myObjNameLineEdit );
-  if (myStretchActivated){
-    aHBox->addStretch();
-  }
+  //if (myStretchActivated){
+  //  aHBox->addStretch();
+  //}
 
   connect( mySelButton, SIGNAL(clicked()), SLOT(activateSelection()));
 }