Skip to content

Commit

Permalink
+ Fix limits in tessellation panel
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jan 22, 2014
1 parent cd5977b commit 698899e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Mod/MeshPart/Gui/Tessellation.cpp
Expand Up @@ -57,6 +57,9 @@ Tessellation::Tessellation(QWidget* parent)
connect(buttonGroup, SIGNAL(buttonClicked(int)),
this, SLOT(meshingMethod(int)));

ui->spinSurfaceDeviation->setMaximum(INT_MAX);
ui->spinMaximumEdgeLength->setMaximum(INT_MAX);

// set the standard method
ui->radioButtonStandard->setChecked(true);
ui->comboFineness->setCurrentIndex(2);
Expand Down

0 comments on commit 698899e

Please sign in to comment.