Fix text rendering for some non-ascii strings

This commit is contained in:
2020-12-17 16:14:33 -08:00
parent b634eb1e8e
commit bf8e98caf0
6 changed files with 54 additions and 44 deletions

View File

@ -105,5 +105,9 @@ namespace ConformalDecals.Text {
public void OnBeforeSerialize() { }
public void OnAfterDeserialize() { }
public override string ToString() {
return _title;
}
}
}