show ft8 panel only when ft8 is active
This commit is contained in:
parent
561ff95436
commit
c7503f87d7
@ -2384,7 +2384,9 @@ function openwebrx_init()
|
|||||||
}
|
}
|
||||||
|
|
||||||
function digimodes_init() {
|
function digimodes_init() {
|
||||||
hide_digitalvoice_panels();
|
$(".openwebrx-meta-panel").each(function(_, p){
|
||||||
|
p.openwebrxHidden = true;
|
||||||
|
});
|
||||||
|
|
||||||
// initialze DMR timeslot muting
|
// initialze DMR timeslot muting
|
||||||
$('.openwebrx-dmr-timeslot-panel').click(function(e) {
|
$('.openwebrx-dmr-timeslot-panel').click(function(e) {
|
||||||
@ -2678,6 +2680,7 @@ function demodulator_digital_replace(subtype)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
toggle_panel("openwebrx-panel-digimodes", true);
|
toggle_panel("openwebrx-panel-digimodes", true);
|
||||||
|
if (subtype == 'ft8') toggle_panel("openwebrx-panel-wsjt-message", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function secondary_demod_create_canvas()
|
function secondary_demod_create_canvas()
|
||||||
@ -2732,6 +2735,7 @@ function secondary_demod_swap_canvases()
|
|||||||
function secondary_demod_init()
|
function secondary_demod_init()
|
||||||
{
|
{
|
||||||
$("#openwebrx-panel-digimodes")[0].openwebrxHidden = true;
|
$("#openwebrx-panel-digimodes")[0].openwebrxHidden = true;
|
||||||
|
$("#openwebrx-panel-wsjt-message")[0].openwebrxHidden = true;
|
||||||
secondary_demod_canvas_container = $("#openwebrx-digimode-canvas-container")[0];
|
secondary_demod_canvas_container = $("#openwebrx-digimode-canvas-container")[0];
|
||||||
$(secondary_demod_canvas_container)
|
$(secondary_demod_canvas_container)
|
||||||
.mousemove(secondary_demod_canvas_container_mousemove)
|
.mousemove(secondary_demod_canvas_container_mousemove)
|
||||||
@ -2797,6 +2801,7 @@ function secondary_demod_close_window()
|
|||||||
{
|
{
|
||||||
secondary_demod_stop();
|
secondary_demod_stop();
|
||||||
toggle_panel("openwebrx-panel-digimodes", false);
|
toggle_panel("openwebrx-panel-digimodes", false);
|
||||||
|
toggle_panel("openwebrx-panel-wsjt-message", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
secondary_demod_fft_offset_db=30; //need to calculate that later
|
secondary_demod_fft_offset_db=30; //need to calculate that later
|
||||||
|
Loading…
Reference in New Issue
Block a user