From 3eaffa90b81904528a7baa631dfc8d9209d747c9 Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Sun, 20 Nov 2022 16:34:54 +0530
Subject: [PATCH] waterfall: set low and high defaults when automatic

---
 waterfall.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/waterfall.c b/waterfall.c
index 50f47de..87b437a 100644
--- a/waterfall.c
+++ b/waterfall.c
@@ -32,9 +32,9 @@
 #endif
 
 
-static int colorLowR=0; // blue
+static int colorLowR=0; // black
 static int colorLowG=0;
-static int colorLowB=128; // navy blue
+static int colorLowB=0;
 
 static int colorMidR=255; // red
 static int colorMidG=0;
@@ -242,8 +242,8 @@ void waterfall_update(RECEIVER *rx) {
 
     
     if(rx->waterfall_automatic) {
-      rx->waterfall_low=average/display_width;
-      rx->waterfall_high=rx->waterfall_low+50;
+        rx->waterfall_low=-119; //average/display_width;
+        rx->waterfall_high=-77; //rx->waterfall_low+50;
     }
 
     gtk_widget_queue_draw (rx->waterfall);
-- 
2.45.2