Fix for Bug IPAL11055:

It is impossible to input negative value as f(t) in table function.
This commit is contained in:
enk 2006-05-05 12:06:21 +00:00
parent b89dff3c27
commit 3b19e7ce9f

View File

@ -192,6 +192,7 @@ void StdMeshersGUI_NbSegmentsCreator::retrieveParams() const
myDistr->setCurrentItem( data.myDistrType );
myScale->setValue( data.myScale );
myConv->setButton( data.myConv );
myTable->table()->funcValidator()->setBottom(myConv->id( myConv->selected() )==0 ? -1E20 : 0);
myTable->table()->setData( data.myTable );
myExpr->setText( data.myExpr );
}