Open henniss opened 2 years ago
I suspect that there might have been some tightening up of type conversion from Python to Qt5 in one of the updates. Qt5 has two different types for points, QPoint
and QPointF
. Another part of the same code uses QPointF
and I would assume replacing the offending line with QPointF
would solve the problem as the drawImage
has overloads for both QPoint
and QPointF
.
I'm encountering an odd error after building this project (from develop, and also from Release_13.3). The project runs, but I get exceptions when I open various UI elements (e.g. the input viewer, or the response curve):
This is odd, because I've never encountered this when running the version of 13.3 available on the download page. It also looks to be the expected behavior: PyQt docs don't seem to indicate that these methods ever excepted float values.
Perhaps I have the wrong version of PyQt5? Or is there some magic I've forgotten to invoke when building?