From 93bdaa89981a5ad2adf93a959f766d236180a17e Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 31 Jul 2018 10:22:45 +0200 Subject: [PATCH] [bugfix] forgot to split * in getFromPath --- pylot/core/util/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 57e74a01..fd706d07 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -3575,7 +3575,7 @@ class TuneAutopicker(QWidget): if index == -1: index += 1 nevents = self.eventBox.model().rowCount() - path = self.eventBox.itemText(index) + path = self.eventBox.itemText(index).split('*')[0] if project.getEventFromPath(path).isTestEvent(): for index in range(nevents): path = self.eventBox.itemText(index)