projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d39e575
)
Need not us "ext" function for frequency setting from VFO menu.
author
c vw
<dl1ycf@darc.de>
Mon, 3 May 2021 18:03:19 +0000
(20:03 +0200)
committer
c vw
<dl1ycf@darc.de>
Mon, 3 May 2021 18:03:19 +0000
(20:03 +0200)
vfo_menu.c
patch
|
blob
|
history
diff --git
a/vfo_menu.c
b/vfo_menu.c
index 038bf2388ad93a7daae379ceca4515d42abd3add..be6c1ecfccced0db0b093cad9d71cc16a89458a3 100644
(file)
--- 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