From 619613f17ea61c5bd6b8ea74f7c2f8ba4e9cf582 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 3 May 2021 20:03:19 +0200 Subject: [PATCH] Need not us "ext" function for frequency setting from VFO menu. --- vfo_menu.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.45.2