Skip to content

Commit

Permalink
Merge pull request #88 from aglowacki/master
Browse files Browse the repository at this point in the history
Move mpfit above lmfit in the combobox
  • Loading branch information
aglowacki authored Aug 13, 2024
2 parents 083f795 + 282fb27 commit 444d39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mvc/FitSpectraWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ void FitSpectraWidget::createLayout()

_cb_opttimizer = new QComboBox();
_cb_opttimizer->addItem(STR_HYBRID_MP_FIT);
_cb_opttimizer->addItem(STR_LM_FIT);
_cb_opttimizer->addItem(STR_MP_FIT);
_cb_opttimizer->addItem(STR_LM_FIT);
connect(_cb_opttimizer, &QComboBox::currentTextChanged, this, &FitSpectraWidget::optimizer_changed);

_chk_auto_model = new QCheckBox("Auto Update Model");
Expand Down

0 comments on commit 444d39f

Please sign in to comment.