Skip to content

Commit e5edf17

Browse files
committed
Revert "Fix marker size assignment to ensure it is an integer"
This reverts commit 0d3aea9.
1 parent 2928250 commit e5edf17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotpy/styles/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def update_param(self, symb):
373373
self.marker = MARKER_NAME[symb]
374374
return
375375
self.marker = MARKER_NAME[symb.style()]
376-
self.size = int(symb.size().width())
376+
self.size = symb.size().width()
377377
self.edgecolor = str(symb.pen().color().name())
378378
self.facecolor = str(symb.brush().color().name())
379379

0 commit comments

Comments
 (0)