Issue '23049: [CEA 1475] Increase the size of some dialog boxes': fix first part.

This commit is contained in:
rnv 2015-04-20 16:27:09 +03:00
parent 3026fe8712
commit 3b8dd51d87
2 changed files with 9 additions and 7 deletions

View File

@ -55,11 +55,12 @@
//================================================================================
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()));
}

View File

@ -56,8 +56,8 @@ class STDMESHERSGUI_EXPORT StdMeshersGUI_ObjectReferenceParamWdg : public QWidge
public:
StdMeshersGUI_ObjectReferenceParamWdg( SUIT_SelectionFilter* filter,
QWidget* parent,
bool multiSelection=false,
bool stretch=true);
bool multiSelection=false
/* ,bool stretch=true*/);
StdMeshersGUI_ObjectReferenceParamWdg( SMESH::MeshObjectType objType,
QWidget* parent,
bool multiSelection=false);