From: c vw <dl1ycf@darc.de>
Date: Mon, 3 May 2021 18:03:19 +0000 (+0200)
Subject: Need not us "ext" function for frequency setting from VFO menu.
X-Git-Url: https://git.rkrishnan.org/specifications/components/simplejson//%22?a=commitdiff_plain;h=619613f17ea61c5bd6b8ea74f7c2f8ba4e9cf582;p=pihpsdr.git

Need not us "ext" function for frequency setting from VFO menu.
---

diff --git a/vfo_menu.c b/vfo_menu.c
index 038bf23..be6c1ec 100644
--- a/vfo_menu.c
+++ b/vfo_menu.c
@@ -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