Skip to content

Commit 5ebe14b

Browse files
committed
Fixes Issue #64
1 parent 58a5d38 commit 5ebe14b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qwt/symbol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ def boundingRect(self):
11771177
pw = 0.0
11781178
if self.__data.pen.style() != Qt.NoPen:
11791179
pw = max([self.__data.pen.widthF(), 1.0])
1180-
rect.setSize(self.__data.size + QSizeF(pw, pw))
1180+
rect.setSize(QSizeF(self.__data.size) + QSizeF(pw, pw))
11811181
rect.moveCenter(QPointF(0.0, 0.0))
11821182
elif self.__data.style in (
11831183
QwtSymbol.XCross,

0 commit comments

Comments
 (0)