mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-04 21:34:17 +05:00
Fix for bug IPAL10431 ( It is impossible create/edit mesh using GUI ).
This commit is contained in:
parent
902a6da0b2
commit
936be4abe3
@ -403,7 +403,7 @@ void SMESHGUI_SelectionOp::selected( QStringList& names,
|
||||
{
|
||||
selIndices.Clear();
|
||||
selectionMgr()->GetIndexes( anIt.Value(), selIndices );
|
||||
if( selIndices.Extent()==0 )
|
||||
if( selIndices.Extent() > 0 )
|
||||
{
|
||||
QString id_str = QString( "%1%2%3" ).arg( anIt.Value()->getEntry() ).arg( idChar() ), current_id_str;
|
||||
for( int i=1, n=selIndices.Extent(); i<=n; i++ )
|
||||
|
Loading…
Reference in New Issue
Block a user