From 1e58a86110dafc7d221389a8817081da3f9c353f Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Tue, 14 Jul 2015 08:10:49 +0200 Subject: [PATCH] [bugfix] forgot to commit changed imports due to class naming changes in [49bf0ecd3cd140a36ce50705b15ed4b44c11078e] --- QtPyLoT.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QtPyLoT.py b/QtPyLoT.py index df9241a9..cdf88629 100755 --- a/QtPyLoT.py +++ b/QtPyLoT.py @@ -49,7 +49,7 @@ from pylot.core.util.utils import fnConstructor, createEvent, getLogin,\ from pylot.core.util.widgets import FilterOptionsDialog, NewEventDlg,\ MPLWidget, PropertiesDlg, HelpForm, createAction, PickDlg from pylot.core.util.structure import DATASTRUCTURE -from pylot.core.util.thread import WorkerThread +from pylot.core.util.thread import AutoPickThread from pylot.core.util.version import get_git_version as _getVersionString import icons_rc @@ -604,7 +604,7 @@ class MainWindow(QMainWindow): list.addItem(str(autopick_parameter)) # Create the worker thread and run it - self.thread = WorkerThread(parent=self, + self.thread = AutoPickThread(parent=self, func=autopickevent, data=self.getData().getWFData(), param=autopick_parameter)