From 13193d209e449bfe81e3545ca201774a732e4eed Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 11 Nov 2019 14:06:04 -0800 Subject: [PATCH] Changed patron name ordering --- manimlib/for_3b1b_videos/common_scenes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manimlib/for_3b1b_videos/common_scenes.py b/manimlib/for_3b1b_videos/common_scenes.py index baa5a2a5..0eba0ab6 100644 --- a/manimlib/for_3b1b_videos/common_scenes.py +++ b/manimlib/for_3b1b_videos/common_scenes.py @@ -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,