From 32c53b8f6f30ea45f4d1589e24c93875e54fee00 Mon Sep 17 00:00:00 2001 From: F33RNI Date: Wed, 21 Dec 2022 21:47:19 +0300 Subject: [PATCH] THD graph color update --- GraphPlot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GraphPlot.py b/GraphPlot.py index 01f7ec6..e47c43d 100644 --- a/GraphPlot.py +++ b/GraphPlot.py @@ -124,7 +124,7 @@ def plots_prepare(self, recording_channels): plot_color_level \ = int(255 - (channel_n / recording_channels) * 255), int((channel_n / recording_channels) * 255), 0 plot_color_distortion \ - = int(255 - (channel_n / recording_channels) * 255), int((channel_n / recording_channels) * 255), 127 + = int(127 - (channel_n / recording_channels) * 127), int((channel_n / recording_channels) * 127), 127 # Levels self.graph_curves_frequency_responses.append( self.frequency_response_plotter.plot(pen=mkPen(color=plot_color_level),