From 7010dedf662a485db5a7809aa7aa1a6e4425830f Mon Sep 17 00:00:00 2001
From: c vw <dl1ycf@darc.de>
Date: Wed, 15 Jan 2020 18:10:40 +0100
Subject: [PATCH] adjust colour of lines at -10, -30, -50 ... dBm

---
 tx_panadapter.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tx_panadapter.c b/tx_panadapter.c
index ac7b694..9021642 100644
--- a/tx_panadapter.c
+++ b/tx_panadapter.c
@@ -210,8 +210,8 @@ void tx_panadapter_update(TRANSMITTER *tx) {
 
   }
 
-  // plot the levels 0, -20, 40, ... dBm (green line with label)
-  // also plot gray lines at -10, -30, -50, ... dBm (without label)
+  // plot the levels   0, -20,  40, ... dBm (turquoise line with label)
+  // plot the levels -10, -30, -50, ... dBm (dark turquoise line without label)
   double dbm_per_line=(double)display_height/((double)tx->panadapter_high-(double)tx->panadapter_low);
   cairo_set_source_rgb (cr, 0.00, 1.00, 1.00);
   cairo_set_line_width(cr, 1.0);
@@ -232,7 +232,7 @@ void tx_panadapter_update(TRANSMITTER *tx) {
         cairo_show_text(cr, v);
         cairo_stroke(cr);
       } else {
-        cairo_set_source_rgb (cr, 0.25, 0.25, 0.25);
+        cairo_set_source_rgb (cr, 0.00, 0.66, 0.66);
         cairo_move_to(cr,0.0,y);
         cairo_line_to(cr,(double)display_width,y);
         cairo_stroke(cr);
-- 
2.45.2