aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/net.py
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-12-13 18:46:30 +0100
committerNao Pross <np@0hm.ch>2021-12-13 18:46:40 +0100
commit1a727bb7536ceb9e611bb3ede5955ce53765176c (patch)
tree260dfe563a794609883f5a3916954b39b287efba /src/gui/net.py
parentMerge remote-tracking branch 'origin/master' (diff)
downloadFading-1a727bb7536ceb9e611bb3ede5955ce53765176c.tar.gz
Fading-1a727bb7536ceb9e611bb3ede5955ce53765176c.zip
Correct window sizes and bug in network_constellation_plot
Diffstat (limited to '')
-rw-r--r--src/gui/net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/net.py b/src/gui/net.py
index 264c9d8..715e7a0 100644
--- a/src/gui/net.py
+++ b/src/gui/net.py
@@ -110,7 +110,7 @@ class network_constellation_plot(network_plot):
Special case of a plot, where complex numbers are drawn into a scatter plot
"""
def __init__(self, url, nsamples, **kwargs):
- network_plot.__init__(self, url, np.complex64, nsamples)
+ network_plot.__init__(self, url, np.complex64, nsamples, **kwargs)
def _init_buffers(self):
self.xvalues = RingBuffer(capacity=self.nsamples, dtype=np.float32)