trackeditor: fix last commit

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8973 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 662aa2d1f1a724222680cdd74cc7f171bbfe1672
Former-commit-id: 1a4d0728829ddc4b18b04e704ed02f42cd6b78dd
This commit is contained in:
iobyte 2023-06-04 14:23:49 +00:00
parent fd0c630b9e
commit 29bfc9d128
2 changed files with 3 additions and 3 deletions

View file

@ -108,11 +108,11 @@ public class SegmentSlider extends JPanel
this.setLayout(new SegmentSliderLayout());
this.setBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.LOWERED));
this.setSize(50, 250);
sectionLabel.setText("Section");
sectionLabel.setText(section);
sectionLabel.setFont(new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
sectionLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
sectionLabel.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
attLabel.setText("Attr");
attLabel.setText(attr);
attLabel.setFont(new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
attLabel.setHorizontalAlignment(javax.swing.SwingConstants.LEADING);
attLabel.setHorizontalTextPosition(javax.swing.SwingConstants.LEADING);

View file

@ -34,7 +34,7 @@ public class Properties
private static Properties instance = new Properties();
private Vector<ActionListener> propertiesListeners = new Vector<ActionListener>();
public final String title = "sd2-trackeditor";
public final String version = "1.2.33";
public final String version = "1.2.34";
private String path;
private double imageScale = 1;