Use decimal grouping for coordinates

master
Captain Chaos 2022-08-18 11:51:26 +02:00
parent 4f65c7e70b
commit 5d194dadd6
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public class GlassPane extends javax.swing.JPanel {
private final Map<Layer, JLabel> hiddenLayers = new HashMap<>();
private JLabel soloLayerLabel;
private static final NumberFormat SCALE_FORMAT = new DecimalFormat("0.# blocks");
private static final NumberFormat SCALE_FORMAT = new DecimalFormat("#,##0.# blocks");
private static final BufferedImage PROHIBITED_SIGN_BACKGROUND = IconUtils.loadScaledImage("org/pepsoft/worldpainter/icons/prohibited_sign_background.png");
private static final BufferedImage PROHIBITED_SIGN_FOREGROUND = IconUtils.loadScaledImage("org/pepsoft/worldpainter/icons/prohibited_sign_foreground.png");
private static final long serialVersionUID = 1L;