From dcca7318905044a52595399f6606ae8d7f63a2a0 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 18 Jun 2019 10:37:19 +0200 Subject: [PATCH] [bugfix] workaround for SPt in pick dictionary --- pylot/core/util/widgets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index b593ed41..a3be7ef8 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -2628,6 +2628,8 @@ class PickDlg(QDialog): picks = self.getPicks(picktype)[phase] elif phase is None: for phase, picks in self.getPicks(picktype).items(): + if phase == 'SPt': + continue self.drawPicks(phase, picktype, textOnly, picks) return else: