From 3e0b882c824d332b3a7f28b89e585c8dfafdc582 Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 19 Aug 2020 16:56:49 +0200 Subject: [PATCH] Hide "Mic In" button if local microphone is selected on startup --- tx_menu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tx_menu.c b/tx_menu.c index 1657300..e4edd79 100644 --- a/tx_menu.c +++ b/tx_menu.c @@ -557,6 +557,7 @@ void tx_menu(GtkWidget *parent) { if(transmitter->local_microphone && (protocol==ORIGINAL_PROTOCOL || protocol==NEW_PROTOCOL)) { + gtk_widget_hide(micin_b); gtk_widget_hide(linein_b); gtk_widget_hide(micboost_b); } -- 2.45.2