From 5034d8ef28447d6436364bf1c0ced6f638cf00af Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 1 Aug 2021 17:42:46 +0200 Subject: [PATCH] hide demod plot line when running --- client/src/graph.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/graph.c b/client/src/graph.c index 769a87c77..e681761e4 100644 --- a/client/src/graph.c +++ b/client/src/graph.c @@ -44,6 +44,7 @@ size_t ClearGraph(bool redraw) { memset(GraphBuffer, 0x00, GraphTraceLen); GraphTraceLen = 0; GraphStop = 0; + showDemod = false; if (redraw) RepaintGraphWindow(); return gtl;