Merge pull request #5525 from janetournois/Polyhedron_demo-fix_isotropic_remeshing_dialog-jtournois

Polyhedron demo - improve PMP::isotropic_remeshing dialog box
This commit is contained in:
Laurent Rineau 2021-04-06 15:13:05 +02:00
commit ed884ad2e7
2 changed files with 4 additions and 2 deletions

View File

@ -245,12 +245,12 @@
</customwidgets>
<tabstops>
<tabstop>splitEdgesOnly_checkbox</tabstop>
<tabstop>edgeLength_dspinbox</tabstop>
<tabstop>nbIterations_spinbox</tabstop>
<tabstop>nbSmoothing_spinbox</tabstop>
<tabstop>protect_checkbox</tabstop>
<tabstop>smooth1D_checkbox</tabstop>
<tabstop>preserveDuplicates_checkbox</tabstop>
<tabstop>buttonBox</tabstop>
</tabstops>
<resources/>
<connections>

View File

@ -954,9 +954,11 @@ private:
ui.nbIterations_spinbox, SLOT(setDisabled(bool)));
connect(ui.splitEdgesOnly_checkbox, SIGNAL(toggled(bool)),
ui.protect_checkbox, SLOT(setDisabled(bool)));
connect(ui.protect_checkbox, SIGNAL(toggled(bool)),
connect(ui.splitEdgesOnly_checkbox, SIGNAL(toggled(bool)),
ui.smooth1D_checkbox, SLOT(setDisabled(bool)));
connect(ui.splitEdgesOnly_checkbox, SIGNAL(toggled(bool)),
ui.nbSmoothing_spinbox, SLOT(setDisabled(bool)));
connect(ui.protect_checkbox, SIGNAL(toggled(bool)),
ui.smooth1D_checkbox, SLOT(setDisabled(bool)));
connect(ui.preserveDuplicates_checkbox, SIGNAL(toggled(bool)),
ui.protect_checkbox, SLOT(setChecked(bool)));