mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-13 18:20:34 +05:00
PAL5919. make group and sub-mesh names read-only
This commit is contained in:
parent
91a00132d4
commit
b5ef37e453
@ -156,11 +156,13 @@ QFrame* SMESHGUI_MultiEditDlg::createMainFrame( QWidget* theParent )
|
|||||||
mySubmeshChk = new QCheckBox( tr( "SMESH_SUBMESH" ), aGrp );
|
mySubmeshChk = new QCheckBox( tr( "SMESH_SUBMESH" ), aGrp );
|
||||||
mySubmeshBtn = new QPushButton( aGrp );
|
mySubmeshBtn = new QPushButton( aGrp );
|
||||||
mySubmesh = new QLineEdit( aGrp );
|
mySubmesh = new QLineEdit( aGrp );
|
||||||
|
mySubmesh->setReadOnly( true );
|
||||||
mySubmeshBtn->setPixmap( aPix );
|
mySubmeshBtn->setPixmap( aPix );
|
||||||
|
|
||||||
myGroupChk = new QCheckBox( tr( "GROUP" ), aGrp );
|
myGroupChk = new QCheckBox( tr( "GROUP" ), aGrp );
|
||||||
myGroupBtn = new QPushButton( aGrp );
|
myGroupBtn = new QPushButton( aGrp );
|
||||||
myGroup = new QLineEdit( aGrp );
|
myGroup = new QLineEdit( aGrp );
|
||||||
|
myGroup->setReadOnly( true );
|
||||||
myGroupBtn->setPixmap( aPix );
|
myGroupBtn->setPixmap( aPix );
|
||||||
|
|
||||||
return aMainGrp;
|
return aMainGrp;
|
||||||
|
Loading…
Reference in New Issue
Block a user