From: DL1YCF Date: Sat, 10 Oct 2020 11:31:25 +0000 (+0200) Subject: DO NOTHING after gtk_show_dialog() X-Git-Url: https://git.rkrishnan.org/Site/Content/cyclelanguage?a=commitdiff_plain;h=33e3912489b8f326938d3838ef5832a86c554cde;p=pihpsdr.git DO NOTHING after gtk_show_dialog() --- diff --git a/sliders.c b/sliders.c index 5fb8acf..a13eb3b 100644 --- a/sliders.c +++ b/sliders.c @@ -158,6 +158,7 @@ static void attenuation_value_changed_cb(GtkWidget *widget, gpointer data) { void set_attenuation_value(double value) { adc_attenuation[active_receiver->adc]=(int)value; + set_attenuation(adc_attenuation[active_receiver->adc]); if(display_sliders) { if (have_rx_gain) { gtk_range_set_value (GTK_RANGE(attenuation_scale),(double)adc_attenuation[active_receiver->adc]); @@ -200,7 +201,6 @@ void set_attenuation_value(double value) { scale_timer=g_timeout_add(2000,scale_timeout_cb,NULL); } } - set_attenuation(adc_attenuation[active_receiver->adc]); } void update_att_preamp(void) { @@ -703,6 +703,8 @@ void set_squelch() { } void set_compression(TRANSMITTER* tx) { + // Update VFO panel to reflect changed value + g_idle_add(ext_vfo_update, NULL); #ifdef COMPRESSION_SLIDER_INSTEAD_OF_SQUELCH if(display_sliders) { gtk_range_set_value (GTK_RANGE(comp_scale),tx->compressor_level); @@ -735,8 +737,6 @@ void set_compression(TRANSMITTER* tx) { #ifdef COMPRESSION_SLIDER_INSTEAD_OF_SQUELCH } #endif - // Now we are also displaying the TX compressor value in the VFO panel - g_idle_add(ext_vfo_update, NULL); } void show_diversity_gain() {