-
Notifications
You must be signed in to change notification settings - Fork 456
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
"TypeError: WindowManager.invoke_props_dialog(): error with keyword argument "width" - Function.width expected an int type, not float" (Blender 3.1 incompatibility due to Python version upgrade (no more implicit conversion from float to int)) #379
Comments
Looks like there's already a pr for fixing this #378 |
For anyone experiencing this issue, the fix currently is to either upgrade your CATS to the development version: https://github.com/absolute-quantum/cats-blender-plugin/archive/refs/heads/development.zip Or downgrade your Blender to version 2.93. |
I want to say thank you for helping to solve this problem. I really appreciate such people! |
For info, see the top of the release notes for the Python API: https://wiki.blender.org/wiki/Reference/Release_Notes/3.1/Python_API
All of the usages of
invoke_props_dialog
that have a non integerwidth
argument are going to need to have thewidth
argument be cast to int or similar.I don't know if there are other areas affected since you can't get very far without hitting an
invoke_props_dialog
call with a float width.The text was updated successfully, but these errors were encountered: