From: gdd Date: Fri, 8 Apr 2011 14:43:35 +0000 (+0000) Subject: rnc : Modification of min size of QLinEditWidget in order to let appear the default... X-Git-Tag: V6_3_0a1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=393bc8699a7a52019cd4b2ab6ac4a483a3f8b08b;p=plugins%2Fnetgenplugin.git rnc : Modification of min size of QLinEditWidget in order to let appear the default name of the hypothesis in Netgne Parameters --- diff --git a/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx b/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx index 34a7820..4a233e9 100644 --- a/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx +++ b/src/GUI/NETGENPluginGUI_HypothesisCreator.cxx @@ -143,6 +143,7 @@ QFrame* NETGENPluginGUI_HypothesisCreator::buildFrame() { aGroupLayout->addWidget( new QLabel( tr( "SMESH_NAME" ), GroupC1 ), row, 0 ); myName = new QLineEdit( GroupC1 ); + myName->setMinimumWidth(160); aGroupLayout->addWidget( myName, row, 1 ); row++; }