diff options
author | Nao Pross <np@0hm.ch> | 2021-12-15 22:18:40 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-12-15 22:18:40 +0100 |
commit | 8d9b6bc5ac48b87e4c9eb5448dd2279f3b82863c (patch) | |
tree | fdc04adc574e3e91d544d79a0f4baacbc2858617 /src/gui | |
parent | Remove geometry frames (diff) | |
parent | littel changes on the flowgraphs and gui (diff) | |
download | Fading-8d9b6bc5ac48b87e4c9eb5448dd2279f3b82863c.tar.gz Fading-8d9b6bc5ac48b87e4c9eb5448dd2279f3b82863c.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '')
-rwxr-xr-x | src/gui/gui.py | 2 | ||||
-rw-r--r-- | src/gui/net.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.py b/src/gui/gui.py index c0e4a9e..cc201a3 100755 --- a/src/gui/gui.py +++ b/src/gui/gui.py @@ -255,7 +255,7 @@ with window(label="Bit Error Rate ", width=800, height=320, pos=(0,825),\ add_theme_color(mvThemeCol_Text,(0,0,0)) #Schwarz add_theme_style(mvStyleVar_FrameRounding, 5) - add_button(label="BER", height=60, width=700, pos=(50,125),tag="ber_value") + add_button(label="BER", height=60, width=700, pos=(50,125), tag="ber_value") bind_item_theme(last_item(), "button_ber") bind_item_theme(ber_window, "ber_window") diff --git a/src/gui/net.py b/src/gui/net.py index 820bc84..f35c7f0 100644 --- a/src/gui/net.py +++ b/src/gui/net.py @@ -83,7 +83,7 @@ class network_value(udpsource): self.bind() def read(self): - return udpsource.read(self, 1) + return udpsource.read(self, 3) def refresh(self): self.value = self.read() |