From 7f0ed11a3763ed1463519905f0b7e522bbbd2ee2 Mon Sep 17 00:00:00 2001 From: Blaine Date: Thu, 18 Jun 2020 16:04:25 +0530 Subject: logging fix --- src/main/python/shapes/shapes.py | 2 +- src/main/python/utils/canvas.py | 1 - 2 files changed, 1 insertion(+), 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) -- cgit