summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/python/shapes/shapes.py2
-rw-r--r--src/main/python/utils/canvas.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py
index d492568..0d28a00 100644
--- a/src/main/python/shapes/shapes.py
+++ b/src/main/python/shapes/shapes.py
@@ -267,7 +267,7 @@ class LineGripItem(QGraphicsPathItem):
if self.size:
painter.save()
pen = self.pen()
- pen.setWidth(-1)
+ pen.setWidth(1)
painter.setPen(pen)
painter.drawPath(self.path())
painter.restore()
diff --git a/src/main/python/utils/canvas.py b/src/main/python/utils/canvas.py
index d5888bf..a75570c 100644
--- a/src/main/python/utils/canvas.py
+++ b/src/main/python/utils/canvas.py
@@ -190,7 +190,6 @@ class canvas(customView):
self.painter.addItem(labelItem)
line.updateLine()
line.addGrabber()
- print(line.startGripItem)
if dict['streamTable']:
table = streamTable(self.labelItems, self)