mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-04 16:22:52 +08:00
feat: Add conversion for LNM vfp export
This commit is contained in:
@@ -343,7 +343,12 @@ namespace swift::misc::aviation
|
||||
fp.setRemarks(fpDom.attribute("Remarks"));
|
||||
fp.setRoute(fpDom.attribute("Route"));
|
||||
|
||||
const QString voice = fpDom.attribute("VoiceType");
|
||||
QString voice = fpDom.attribute("VoiceType");
|
||||
if (voice.toLower() == "full")
|
||||
{
|
||||
// Default string in LNM exporter
|
||||
voice = "VOICE";
|
||||
}
|
||||
fp.setVoiceCapabilities(voice);
|
||||
|
||||
// Ignoring equipment prefix, suffix and IsHeavy flag
|
||||
|
||||
Reference in New Issue
Block a user