Fixed Proper error message when there is no room for new characters in the font (DefineFont1)

Fixed Synchronization problems when adding characters to the font vs its display
This commit is contained in:
Jindra Petřík
2023-09-24 09:45:15 +02:00
parent c7f4aaddfb
commit ef9e80cb21
12 changed files with 92 additions and 51 deletions

View File

@@ -4059,9 +4059,7 @@ public class CommandLineArgumentParser {
return false;
}
font.addCharacter(character, f);
return true;
return font.addCharacter(character, f);
}
}, new TextImportErrorHandler() {
private String getTextTagInfo(TextTag textTag) {