diff --git a/src/Views/ForceDirectedGraph.elm b/src/Views/ForceDirectedGraph.elm index 6412e4aaf444c500dacd4bd152ed5b5a5ec57e59..1a835e5cf4507a3a07f5951f008b915d0b5fdceb 100644 --- a/src/Views/ForceDirectedGraph.elm +++ b/src/Views/ForceDirectedGraph.elm @@ -460,7 +460,7 @@ updateGraphWithList = calculateModel : List Entry -> Local.Model -> Cmd Local.Msg calculateModel data local = - Task.perform Local.RecalcEnd (Process.sleep 10 |> Task.andThen (\_ -> Process.sleep 0) |> Task.andThen (\_ -> postInit data local)) + Task.perform Local.RecalcEnd (Process.sleep 50 |> Task.andThen (\_ -> Process.sleep 0) |> Task.andThen (\_ -> postInit data local)) update : Local.Msg -> Global -> Local.Model -> ( Global, Local.Model, Cmd Msg )