We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9e6ffe commit 39a473cCopy full SHA for 39a473c
htdocs/openwebrx.js
@@ -1398,7 +1398,9 @@ function initSliders() {
1398
}).on('contextmenu', function(){
1399
waterfall_measure_minmax_continuous = !waterfall_measure_minmax_continuous;
1400
waterfallColorsContinuousReset();
1401
- waterfallAutoButton[(waterfall_measure_minmax_continuous ? 'add' : 'remove') + 'Class']('highlighted')
+ waterfallAutoButton[waterfall_measure_minmax_continuous ? 'addClass' : 'removeClass']('highlighted');
1402
+ $('#openwebrx-waterfall-color-min, #openwebrx-waterfall-color-max').prop('disabled', waterfall_measure_minmax_continuous);
1403
+
1404
return false;
1405
});
1406
}
0 commit comments