aboutsummaryrefslogtreecommitdiff
path: root/src/toolkit/frame.py
diff options
context:
space:
mode:
authortassaron2017-08-28 18:54:54 -0400
committertassaron2017-08-28 18:54:54 -0400
commit8411857030d92e448d5c64682f396e677161afbe (patch)
tree2dc5e033a4073d433aaa824113467032d35ca3c1 /src/toolkit/frame.py
parentad6dd9f5329f3e23e75c181c21ca8701028b538f (diff)
ctrl-c ends commandline mode properly
Diffstat (limited to 'src/toolkit/frame.py')
-rw-r--r--src/toolkit/frame.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/toolkit/frame.py b/src/toolkit/frame.py
index aefb55f..0e200b5 100644
--- a/src/toolkit/frame.py
+++ b/src/toolkit/frame.py
@@ -32,6 +32,7 @@ class FramePainter(QtGui.QPainter):
super().setPen(penStyle)
def finalize(self):
+ log.verbose("Finalizing FramePainter")
imBytes = self.image.bits().asstring(self.image.byteCount())
frame = Image.frombytes(
'RGBA', (self.image.width(), self.image.height()), imBytes