From eb434d0201033a09e630ae68b2ac19354ba9be16 Mon Sep 17 00:00:00 2001 From: c vw Date: Fri, 25 Sep 2020 16:25:08 +0200 Subject: [PATCH] cw_menu: update VFO bar if speed or sidetone freq changed --- cw_menu.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cw_menu.c b/cw_menu.c index 07ce115..bc00e21 100644 --- a/cw_menu.c +++ b/cw_menu.c @@ -34,6 +34,7 @@ #include "new_protocol.h" #include "old_protocol.h" #include "iambic.h" +#include "ext.h" static GtkWidget *parent_window=NULL; @@ -48,6 +49,10 @@ void cw_changed() { #ifdef LOCALCW keyer_update(); #endif +// +// speed and side tone frequency are displayed in the VFO bar +// + g_idle_add(ext_vfo_update, NULL); } static void cleanup() { -- 2.45.2