From 647cb1e32bcdcbdcbc18a598f38ff0a675344614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Thu, 29 Jun 2017 16:41:09 +0200 Subject: [PATCH] Reintroduced changes of MP spuriously removed by previous commit. --- pylot/core/util/widgets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 01c631f0..5e43a2b0 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -1361,8 +1361,8 @@ class PickDlg(QDialog): } if self.getPicks(picktype): if phase is not None and type(self.getPicks(picktype)[phase]) is dict: - picks = self.getPicks(picktype)[phase] - colors = phase_col[phase[0].upper()] ++ picks = self.getPicks(picktype)[phase] ++ colors = phase_col[phase[0].upper()] elif phase is None: for phase in self.getPicks(picktype): self.drawPicks(phase, picktype)