From 65cdb2aaf2812c983746ab7874efe47d9b257e16 Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Wed, 14 Sep 2011 15:41:52 +0200 Subject: [PATCH] add annotationFinished signal to inserters --- sloth/items/inserters.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sloth/items/inserters.py b/sloth/items/inserters.py index 5d9a2be..50f9fdc 100644 --- a/sloth/items/inserters.py +++ b/sloth/items/inserters.py @@ -3,8 +3,12 @@ from PyQt4.Qt import * import math class ItemInserter(QObject): + """ + The base class for all item insertion handlers. + """ # Signals - inserterFinished = pyqtSignal() + annotationFinished = pyqtSignal() + inserterFinished = pyqtSignal() def __init__(self, labeltool, scene, default_properties=None): QObject.__init__(self)