changing PySide2.QtCore.QByteArray calls to be utf-8-encoded strings … #124
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…rather than Python str so it matches the signature of QByteArray.
Running FreeCAD 0.18.3 on Ubuntu 19.10 I was getting errors adding a dimension to a drawing. Error such as:
raceback (most recent call last):
File "/home/musinsky/.FreeCAD/Mod/FreeCAD_drawing_dimensioning/drawingDimensioning/selectionOverlay/init.py", line 23, in mousePressEvent
self._onClickFun( event, self, self.elementXML, self.elementParms, self.elementViewObject )
File "/home/musinsky/.FreeCAD/Mod/FreeCAD_drawing_dimensioning/drawingDimensioning/linearDimension.py", line 214, in selectDimensioningPoint
previewDimension.initializePreview( d, linearDimension_points_preview, linearDimension_points_clickHandler )
File "/home/musinsky/.FreeCAD/Mod/FreeCAD_drawing_dimensioning/drawingDimensioning/previewDimension.py", line 60, in initializePreview
preview.SVGRenderer.load( QtCore.QByteArray( ''' ''' % (drawingVars.width, drawingVars.height) ) ) #without this something goes wrong...
TypeError: 'PySide2.QtCore.QByteArray' called with wrong argument types:
PySide2.QtCore.QByteArray(str)
Supported signatures:
PySide2.QtCore.QByteArray()
PySide2.QtCore.QByteArray(bytearray)
PySide2.QtCore.QByteArray(bytes)
PySide2.QtCore.QByteArray(PySide2.QtCore.QByteArray)
PySide2.QtCore.QByteArray(int, char)
By encoding each QByteArray string as utf-8, the call is now working and the dimension shows up as expected since it now matches the 'bytes' signature for QByteArray.