summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-03-27 14:59:30 +0100
committerYorhel <git@yorhel.nl>2020-03-27 14:59:30 +0100
commite78c45fb74a2a9c394a136e312f911131337f364 (patch)
treecbda1acd56874e38b4fc444273c47942381378f0
parenta9a4e7098d4d28822174a588c546051d364b3b66 (diff)
imgflag: More box size adjustments
-rw-r--r--elm/ImageFlagging.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elm/ImageFlagging.elm b/elm/ImageFlagging.elm
index 54d0a555..8295e03e 100644
--- a/elm/ImageFlagging.elm
+++ b/elm/ImageFlagging.elm
@@ -177,7 +177,7 @@ view : Model -> Html Msg
view model =
let
boxwidth = clamp 600 1200 <| model.pWidth - 300
- boxheight = clamp 300 800 <| model.pHeight - clamp 200 300 (model.pHeight - 500)
+ boxheight = clamp 300 700 <| model.pHeight - clamp 200 350 (model.pHeight - 500)
px n = String.fromInt n ++ "px"
stat avg stddev =
case (avg, stddev) of