Skip to content

Commit

Permalink
menu: Fix ExpFit and LinFit menu labels
Browse files Browse the repository at this point in the history
The labels for the `ExpFit` and `LinFit` commands were swapped.

Signed-off-by: Christophe de Dinechin <christophe@dinechin.org>
  • Loading branch information
c3d committed Mar 2, 2024
1 parent 50c896a commit 9c630f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/menu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -707,8 +707,8 @@ MENU(RegressionMenu,
// Statistics regression menu
// ----------------------------------------------------------------------------
"BestFit", ID_BestFit,
"ExpFit", ID_LinearFit,
"LinFit", ID_ExponentialFit,
"LinFit", ID_LinearFit,
"ExpFit", ID_ExponentialFit,
"LogFit", ID_PowerFit,
"PwrFit", ID_LogarithmicFit,
"LR", ID_LinearRegression,
Expand Down

0 comments on commit 9c630f4

Please sign in to comment.