-
Notifications
You must be signed in to change notification settings - Fork 458
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 Model Settings] Not Opening (Blender 3.1.0) ~and fix~ #424
Comments
Hi Foxxify, where can I change the "dpi_value * 3.25" ? |
File "C:\Users\Foxxify\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\cats-blender-plugin-0-19-0\ui\armature.py", line 205 |
Duplicate of #379 |
what app do i get to change it?? |
^ |
@evo234 |
(self, width=dpi_value * 3.25) to (self, width=int(dpi_value * 3.25) like that?, i change like that but i get anoter error with syntax |
(self, width=int(dpi_value * 3.25)) |
Problem:
This is the error I get with version 0.19.0 when trying to click on the Fix Model Settings in Blender 3.1.0
Fix:
Fixed by changing
dpi_value * 3.25
toint(dpi_value * 3.25)
The text was updated successfully, but these errors were encountered: