FontPanel scrollRectToVisible fix

This commit is contained in:
Jindra Petřík
2021-02-13 15:46:25 +01:00
parent b2982c92ce
commit 6e58fa79fb

View File

@@ -223,7 +223,11 @@ public class FontPanel extends JPanel {
fontLeadingLabel.setText(ft.getLeading() == -1 ? translate("value.unknown") : Integer.toString(ft.getLeading()));
String chars = ft.getCharacters();
fontCharactersTextArea.setText(chars);
fontCharactersScrollPane.getVerticalScrollBar().scrollRectToVisible(new Rectangle(0, 0, 1, 1));
try {
fontCharactersScrollPane.getVerticalScrollBar().scrollRectToVisible(new Rectangle(0, 0, 1, 1));
} catch (Exception ex) {
//ignore
}
setAllowSave(false);
Font selFont = ft.getSystemFont();