From: ouv Date: Tue, 13 Dec 2005 17:18:27 +0000 (+0000) Subject: Fixed bug GVIEW10900 : Parameter ?Number of faces? of ?Geometrical Sphere? is invaria... X-Git-Tag: TG-D5-38-2003_D2005-20-12~33 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=dd6fe209183637105064448161bed3fcbb38b8fe;p=modules%2Fvisu.git Fixed bug GVIEW10900 : Parameter ?Number of faces? of ?Geometrical Sphere? is invariable in ?Gauss Points Properties? dialog box --- diff --git a/src/VVTK/VVTK_PrimitiveBox.cxx b/src/VVTK/VVTK_PrimitiveBox.cxx index 6170d09a..de8817f3 100644 --- a/src/VVTK/VVTK_PrimitiveBox.cxx +++ b/src/VVTK/VVTK_PrimitiveBox.cxx @@ -134,7 +134,8 @@ VVTK_PrimitiveBox::VVTK_PrimitiveBox( QWidget* parent ) : myFaceNumberLabel = new QLabel( tr( "FACE_NUMBER" ), this ); myFaceNumberLineEdit = new QLineEdit( this ); myFaceNumberLineEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myFaceNumberLineEdit->setReadOnly( true ); + myFaceNumberLineEdit->setEnabled( false ); + //myFaceNumberLineEdit->setReadOnly( true ); aLayout->addWidget( myFaceNumberLabel, 2, 0 ); aLayout->addMultiCellWidget( myFaceNumberLineEdit, 2, 2, 1, 2 );