Sports Scoreboard by ghensley Request

Can you add the following to the code:

return render.Root(
     show_full_animation = True, 
          delay = 350,
        child = render.Marquee(
            child = render.Column(
                children = rows,
                cross_align = "start",
                main_align = "start",
            ),
            scroll_direction = "vertical",
            height = 32,
        ),
    )

I am eager to see all my teams and not just the first five. Another nice change would be to let the user specifify select from a scroll speed instead of defaulting to 350, but that’s less important to me in the short term than adding the " show_full_animation = True" so that I can see all of the teams I select no matter how many I select.

Thank you!

1 Like