mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 12:00:45 +00:00
Fixed Editation of font descent colliding with leading
This commit is contained in:
@@ -676,7 +676,7 @@ public class FontPanel extends JPanel {
|
||||
|
||||
try {
|
||||
int ascent = Integer.parseInt(fontAscentTextField.getText());
|
||||
int descent = Integer.parseInt(fontLeadingTextField.getText());
|
||||
int descent = Integer.parseInt(fontDescentTextField.getText());
|
||||
int leading = Integer.parseInt(fontLeadingTextField.getText());
|
||||
if (ascent < 0 || descent < 0 || leading < 0) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user