]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Need not us "ext" function for frequency setting from VFO menu.
authorc vw <dl1ycf@darc.de>
Mon, 3 May 2021 18:03:19 +0000 (20:03 +0200)
committerc vw <dl1ycf@darc.de>
Mon, 3 May 2021 18:03:19 +0000 (20:03 +0200)
vfo_menu.c

index 038bf2388ad93a7daae379ceca4515d42abd3add..be6c1ecfccced0db0b093cad9d71cc16a89458a3 100644 (file)
@@ -155,10 +155,11 @@ static gboolean freqent_select_cb (GtkWidget *widget, gpointer data) {
         send_vfo_frequency(client_socket,active_receiver->id,f);
       } else {
 #endif
-        fp=g_new(SET_FREQUENCY,1);
-        fp->vfo=v;
-        fp->frequency = f;
-        g_idle_add(ext_set_frequency, fp);
+        //fp=g_new(SET_FREQUENCY,1);
+        //fp->vfo=v;
+        //fp->frequency = f;
+        //g_idle_add(ext_set_frequency, fp);
+        local_set_frequency(v, f);
 #ifdef CLIENT_SERVER
       }
 #endif