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

@@ -4105,9 +4105,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
return false;
}
font.addCharacter(character, f);
return true;
return font.addCharacter(character, f);
}
};
}