mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Fix issues in number_line.py (#2310)
Fix the issue that changes in decimal_number_config["font_size"] get rewritten by number_config
This commit is contained in:
parent
3e307926fd
commit
7a61a13691
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