From 14d0e2a8e9c0febebe06c389efabc3c76436a084 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Fri, 16 Feb 2024 17:05:47 -0500 Subject: [PATCH] Changed default fake caret width to +-3kHz. --- htdocs/lib/Demodulator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/Demodulator.js b/htdocs/lib/Demodulator.js index 279811dd..2c4a5429 100644 --- a/htdocs/lib/Demodulator.js +++ b/htdocs/lib/Demodulator.js @@ -54,7 +54,7 @@ Envelope.prototype.draw = function(visible_range){ var fake_indicator = this.demodulator.low_cut==null || this.demodulator.high_cut==null; if (fake_indicator) { // fake values just so that the tuning indicator shows up - var fixedBw = 100000 + var fixedBw = 3000 // if we know the if rate, we can display that if (this.demodulator.ifRate) { fixedBw = this.demodulator.ifRate / 2;