-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Fix become bug #614
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix become bug #614
Conversation
Do you think you could add a test for this? |
To be honest I don't know how to add new tests. Is the process documented somewhere? |
I am okay with reverting to the old logic, and adding a test for Just out of curiosity: is the problem with the new logic "just" that the background is not repainted after changing the |
There's some problem with the logic for determining which mobjects are moving which considers the mobject to still be static after calling become(), so it gets painted to the screen. |
added a test for the become method
The tests are passing locally, so I'm not sure what's going on here. |
Fixes #610 by using the old logic to separate static and non-static mobjects.