Times character instead of letter x

This commit is contained in:
Jindra Petřík
2022-11-06 12:28:08 +01:00
parent 6640f82bcb
commit 5577c60d78

View File

@@ -148,7 +148,7 @@ public class NewFileDialog extends AppDialog {
widthEditor.setPreferredSize(new Dimension(80, widthEditor.getPreferredSize().height));
heightEditor.setPreferredSize(new Dimension(80, heightEditor.getPreferredSize().height));
displayRectEditorPanel.add(widthEditor);
displayRectEditorPanel.add(new JLabel("x"));
displayRectEditorPanel.add(new JLabel("×"));
displayRectEditorPanel.add(heightEditor);
displayRectEditorPanel.add(unitComboBox);