mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Fix issues in number_line.py
Fix the issue that changes in decimal_number_config["font_size"] get rewritten by number_config
This commit is contained in:
parent
7a7bf83f11
commit
99a76289b4
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ class NumberLine(Line):
|
|||
**number_config
|
||||
) -> DecimalNumber:
|
||||
number_config = merge_dicts_recursively(
|
||||
self.decimal_number_config, number_config,
|
||||
number_config, self.decimal_number_config,
|
||||
)
|
||||
if direction is None:
|
||||
direction = self.line_to_number_direction
|
||||
|
|
Loading…
Add table
Reference in a new issue