diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/python/utils/canvas.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/python/utils/canvas.py b/src/main/python/utils/canvas.py index 68b0902..a15813f 100644 --- a/src/main/python/utils/canvas.py +++ b/src/main/python/utils/canvas.py @@ -34,6 +34,7 @@ class canvas(CustomView): self.painter.labelAdded.connect(self.updateStreamTable) self.painter.setBackgroundBrush(QBrush(Qt.white)) #set white background self.setScene(self.painter) + self.addAction(self.painter.deleteAction) #set initial paper size for the scene self.painter.setSceneRect(0, 0, *paperSizes[self._canvasSize][self._ppi]) |