mirror of https://github.com/CGAL/cgal
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:
commit
ed884ad2e7
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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)));
|
||||
|
|
|
|||
Loading…
Reference in New Issue