From d21afcf31ab3b6829aa03f74e388985f146aa146 Mon Sep 17 00:00:00 2001 From: Marcel Paffrath Date: Tue, 18 Jul 2017 16:12:33 +0200 Subject: [PATCH] [minor] changed linewidth of wf plot slightly --- pylot/RELEASE-VERSION | 2 +- pylot/core/util/widgets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pylot/RELEASE-VERSION b/pylot/RELEASE-VERSION index b7854b47..8c641461 100644 --- a/pylot/RELEASE-VERSION +++ b/pylot/RELEASE-VERSION @@ -1 +1 @@ -6059-dirty +be58-dirty diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index c75c53f8..f89d7b99 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -666,7 +666,7 @@ class WaveformWidget(FigureCanvas): trace.normalize(np.max(np.abs(trace.data)) * 2) times = [time for index, time in enumerate(time_ax) if not index%nth_sample] data = [datum + n for index, datum in enumerate(trace.data) if not index%nth_sample] - self.getAxes().plot(times, data, 'k') + self.getAxes().plot(times, data, 'k', linewidth=0.7) if noiselevel is not None: for level in noiselevel: self.getAxes().plot([time_ax[0], time_ax[-1]],