inline variable definiton

This commit is contained in:
Daniel Barlow 2024-11-22 17:46:55 +00:00
parent 20c287378a
commit 8f3c594699

View File

@ -246,12 +246,10 @@ updateModel msg model =
_ -> model
TimeScale factor ->
let fudge = factor
len = model.duration - fudge
in { model |
startTime = model.startTime + fudge / 2
, duration = len
}
{ model |
startTime = model.startTime + factor / 2
, duration = model.duration - factor
}
Loaded result ->
case result of