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);
+ // If device has no microphone input, these widgest may not exist
+ if (micbin_b != NULL) gtk_widget_hide(micin_b);
+ if (linein_b != NULL) gtk_widget_hide(linein_b);
+ if (micboost_b != NULL) gtk_widget_hide(micboost_b);
}
}