mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 11:03:03 +08:00
Changed patron name ordering
This commit is contained in:
@ -189,7 +189,6 @@ class PatreonEndScreen(PatreonThanks, PiCreatureScene):
|
||||
def scroll_through_patrons(self):
|
||||
logo_box = Square(side_length=2.5)
|
||||
logo_box.to_corner(DOWN + LEFT, buff=MED_LARGE_BUFF)
|
||||
total_width = FRAME_X_RADIUS - logo_box.get_right()[0]
|
||||
|
||||
black_rect = Rectangle(
|
||||
fill_color=BLACK,
|
||||
@ -213,10 +212,11 @@ class PatreonEndScreen(PatreonThanks, PiCreatureScene):
|
||||
underline.next_to(thanks, DOWN, SMALL_BUFF)
|
||||
thanks.add(underline)
|
||||
|
||||
changed_patron_names = map(
|
||||
changed_patron_names = list(map(
|
||||
self.modify_patron_name,
|
||||
self.specific_patrons,
|
||||
)
|
||||
))
|
||||
changed_patron_names.sort()
|
||||
patrons = VGroup(*map(
|
||||
TextMobject,
|
||||
changed_patron_names,
|
||||
|
Reference in New Issue
Block a user