abulka / pynsource

Reverse engineer Python source code into UML
http://pynsource.com
283 stars 40 forks source link

Fixed float/int argument type mismatch in several wxPython calls #115

Closed pchemguy closed 1 year ago

pchemguy commented 1 year ago

Python 3.10 no longer does automatic float to int conversion where necessary. wxPython function usually expect pixel coordinates as integers and fail if floats are supplied.

Fixes: #114

abulka commented 1 year ago

Thanks so much for this contribution!