From 393bc8699a7a52019cd4b2ab6ac4a483a3f8b08b Mon Sep 17 00:00:00 2001 From: gdd Date: Fri, 8 Apr 2011 14:43:35 +0000 Subject: [PATCH] rnc : Modification of min size of QLinEditWidget in order to let appear the default name of the hypothesis in Netgne Parameters --- src/GUI/NETGENPluginGUI_HypothesisCreator.cxx | 1 + 1 file changed, 1 insertion(+) 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++; }