Terminate overbar notation correctly.

Fixes https://gitlab.com/kicad/code/kicad/issues/13438
This commit is contained in:
Jeff Young 2023-01-08 20:08:16 +00:00
parent 9c0445ed98
commit f17ddf5c88
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ wxString AltiumPropertyToKiCadString( const wxString& aString )
}
}
if( inOverbar )
converted += "}";
return converted;
}