aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-12-15 16:09:52 +0100
committerNao Pross <np@0hm.ch>2021-12-15 16:09:52 +0100
commit21cc0ce08348c15b431f56bea373c2e671bde8db (patch)
treeca906ad7635771af98f2aae0b3590da0f617ba18 /src
parentMerge remote-tracking branch 'origin/master' (diff)
downloadFading-21cc0ce08348c15b431f56bea373c2e671bde8db.tar.gz
Fading-21cc0ce08348c15b431f56bea373c2e671bde8db.zip
Small fix
Diffstat (limited to 'src')
-rwxr-xr-xsrc/gui/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.py b/src/gui/gui.py
index 7e2357b..6334b32 100755
--- a/src/gui/gui.py
+++ b/src/gui/gui.py
@@ -284,8 +284,8 @@ set_primary_window("primary_window", True)
# Main loop
while is_dearpygui_running():
- for plt, tag in network_plots.items():
- plt.refresh_series(tag)
+ for plt in network_plots:
+ plt.refresh_series(plt.series_tag)
ber_value.refresh()
render_dearpygui_frame()