From 7dae8e11073615163dff04e099f598de0dbfb1e6 Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 2 Aug 2018 13:00:36 +0200 Subject: [PATCH] [bugfix] not regarding possible * in eventpath in eventbox --- 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 eead217e..44466701 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -3376,7 +3376,7 @@ class TuneAutopicker(QWidget): return self.eventBox.currentText().split('/')[-1] def get_current_event_fp(self): - return self.eventBox.currentText() + return self.eventBox.currentText().split('*')[0] def get_current_event_picks(self, station): event = self.get_current_event()