mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 11:17:43 +00:00
Merge pull request #1251 from italosestilon/master
fix iteration through a dictionary
This commit is contained in:
commit
1ecbbbbcd5
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class OpeningQuote(Scene):
|
|||
if self.quote_arg_separator == " ":
|
||||
quote[0].shift(0.2 * RIGHT)
|
||||
quote[-1].shift(0.2 * LEFT)
|
||||
for term, color in self.highlighted_quote_terms:
|
||||
for term, color in self.highlighted_quote_terms.items():
|
||||
quote.set_color_by_tex(term, color)
|
||||
quote.to_edge(UP, buff=self.top_buff)
|
||||
if quote.get_width() > max_width:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue