From 5577c60d7855de6253518ee1428885c4962ccbfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 6 Nov 2022 12:28:08 +0100 Subject: [PATCH] Times character instead of letter x --- src/com/jpexs/decompiler/flash/gui/NewFileDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/gui/NewFileDialog.java b/src/com/jpexs/decompiler/flash/gui/NewFileDialog.java index 70e655696..0fc6a5266 100644 --- a/src/com/jpexs/decompiler/flash/gui/NewFileDialog.java +++ b/src/com/jpexs/decompiler/flash/gui/NewFileDialog.java @@ -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);