Skip to content

Commit

Permalink
Slider for m exponent now updates as intended.
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavdelius committed May 3, 2023
1 parent 8279ac0 commit 204fc14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/reproductionControl.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ reproductionControlUI <- function(p, input) {
min = signif(sp$w_max / 2, 2),
max = signif(sp$w_max * 1.5, 2)),
sliderInput("m", "m", value = sp$m,
min = sp$n,
max = sp$n * 2,
min = sp$m,
max = sp$m * 2,
step = 0.01)
)
}
Expand Down

0 comments on commit 204fc14

Please sign in to comment.