diff --git a/MainV2.cs b/MainV2.cs index 0042179263..dac5c827cb 100644 --- a/MainV2.cs +++ b/MainV2.cs @@ -398,6 +398,11 @@ public static MAVLinkInterface comPort { if (_comPort == value) return; + + // Disable speech on old port and enable it on the new one + if (_comPort != null) _comPort.speechenabled = false; + if (value != null) value.speechenabled = true; + _comPort = value; if (instance == null) return;