]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
VFO_MENU: do not show the "Enable Squelch" check-box if the sliders are displayed.
authorc vw <dl1ycf@darc.de>
Tue, 23 Nov 2021 14:30:04 +0000 (15:30 +0100)
committerc vw <dl1ycf@darc.de>
Tue, 23 Nov 2021 14:30:04 +0000 (15:30 +0100)
vfo_menu.c

index 0508a48d757bbe11028f07b6d0471ba0ab18ae27..a42f99d89403c88d56f243bcc0d429b36d38588f 100644 (file)
@@ -300,10 +300,16 @@ void vfo_menu(GtkWidget *parent,int vfo) {
   gtk_grid_attach(GTK_GRID(grid),vfo_b,4,3,1,1);
 
 
-  GtkWidget *enable_squelch=gtk_check_button_new_with_label("Enable Squelch");
-  gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (enable_squelch), active_receiver->squelch_enable);
-  gtk_grid_attach(GTK_GRID(grid),enable_squelch,3,5,1,1);
-  g_signal_connect(enable_squelch,"toggled",G_CALLBACK(squelch_enable_cb),NULL);
+  if (!display_sliders) {
+    //
+    // If the sliders are "on display", then we also have a squelch-enable checkbox
+    // in the display area.
+    // 
+    GtkWidget *enable_squelch=gtk_check_button_new_with_label("Enable Squelch");
+    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (enable_squelch), active_receiver->squelch_enable);
+    gtk_grid_attach(GTK_GRID(grid),enable_squelch,3,5,1,1);
+    g_signal_connect(enable_squelch,"toggled",G_CALLBACK(squelch_enable_cb),NULL);
+  }
 
 #ifdef PURESIGNAL
   if(can_transmit && (protocol==ORIGINAL_PROTOCOL || protocol==NEW_PROTOCOL)) {