trackeditor: fix object name

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9213 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
iobyte 2023-11-06 15:03:34 +00:00
parent 084274120f
commit 8ab6fd749e
2 changed files with 1 additions and 3 deletions

View File

@ -506,8 +506,6 @@ public class TrackObjectDialog extends JDialog
trackLocationTextField.setText(String.format("%.3f", getTrackLocation().x) + ", " + String.format("%.3f", getTrackLocation().y));
setObjectName(trackObjects.get(objectComboBox.getSelectedIndex()).getName());
rgb = trackObjects.get(objectComboBox.getSelectedIndex()).getColor();
Color backgroundColor = new Color((rgb >> 16) & 0xff, (rgb >> 8) & 0xff, rgb & 0xff);

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.3.24";
public final String version = "1.3.25";
private String path;
private double imageScale = 1;