mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-30 13:15:52 +08:00
fix(lib): pass skip argument to ManimCE (#524)
* fix(lib): pass skip argument to ManimCE * fix(lint): make ruff happy
This commit is contained in:
@ -127,7 +127,10 @@ class Slide(BaseSlide, Scene): # type: ignore[misc]
|
||||
**kwargs: Any,
|
||||
) -> None:
|
||||
Scene.next_section(
|
||||
self, *args, skip_animations=base_slide_config.skip_animations, **kwargs
|
||||
self,
|
||||
*args,
|
||||
skip_animations=base_slide_config.skip_animations | self._skip_animations,
|
||||
**kwargs,
|
||||
)
|
||||
BaseSlide.next_slide.__wrapped__(
|
||||
self,
|
||||
|
Reference in New Issue
Block a user