From a97258513eb9814e7359d69578dd11e544651ae8 Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 8 Sep 2017 10:28:54 +0200 Subject: [PATCH] [bugfix] missing variable name change --- 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 7e0a906c..6648e6f8 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -2507,7 +2507,7 @@ class TuneAutopicker(QWidget): for network, station in stations: item = QtGui.QStandardItem(network + '.' + station) if station in self.get_current_event().pylot_picks: - item.setBackground(self.parent()._colors['ref']) + item.setBackground(self.parent()._ref_test_colors['ref']) model.appendRow(item) def init_figure_tabs(self):