Skip to content
Snippets Groups Projects
Commit 87609d43 authored by Jan Schnathmeier's avatar Jan Schnathmeier
Browse files

Adjust defaults in GUI

parent f299ff26
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ MetaMeshToolbox::MetaMeshToolbox(QWidget* parent) : QWidget(parent)
combo_box_remeshing_smtype_->addItem("Forest Fire");
combo_box_remeshing_smtype_->addItem("Vertex Weights");
combo_box_remeshing_smtype_->addItem("Vertex Distances");
combo_box_remeshing_smtype_->setCurrentIndex(2);
combo_box_remeshing_smtype_->setCurrentIndex(1);
combo_box_remeshing_strype_ = new QComboBox;
combo_box_remeshing_strype_->addItem("None");
......@@ -70,14 +70,14 @@ MetaMeshToolbox::MetaMeshToolbox(QWidget* parent) : QWidget(parent)
input_alpha_->setRange(1,10);
input_alpha_->setDecimals(3);
input_alpha_->setSingleStep(0.001);
input_alpha_->setValue(4.0/3.0);
input_alpha_->setValue(2);
input_alpha_->setToolTip("Alpha parameter; splitting slack var");
input_beta_ = new QDoubleSpinBox();
input_beta_->setRange(0.1,1);
input_beta_->setDecimals(3);
input_beta_->setSingleStep(0.001);
input_beta_->setValue(4.0/5.0);
input_beta_->setValue(0.5);
input_beta_->setToolTip("Beta parameter; collapsing slack var");
input_length_ = new QDoubleSpinBox();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment