From 698899e6d70d89da70f9fa205bb75a136ac63351 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 22 Jan 2014 15:42:18 +0100 Subject: [PATCH] + Fix limits in tessellation panel --- src/Mod/MeshPart/Gui/Tessellation.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Mod/MeshPart/Gui/Tessellation.cpp b/src/Mod/MeshPart/Gui/Tessellation.cpp index ad7db501b6..5282c1db25 100644 --- a/src/Mod/MeshPart/Gui/Tessellation.cpp +++ b/src/Mod/MeshPart/Gui/Tessellation.cpp @@ -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);