trackeditor: fix unexpected segment length changes
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9224 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 9d3afaf0c1b289e98caf890a5ddbf69ee82d20ec Former-commit-id: eefc87be96d2af6bae0679b46fedd17622b5946b
This commit is contained in:
parent
6d9bf86a0a
commit
febbabd8e4
2 changed files with 2 additions and 2 deletions
|
@ -484,9 +484,9 @@ public class SegmentSlider extends JPanel
|
||||||
{
|
{
|
||||||
getTextField().setText(nf.format(value));
|
getTextField().setText(nf.format(value));
|
||||||
getTextField().setCaretPosition(0);
|
getTextField().setCaretPosition(0);
|
||||||
}
|
|
||||||
valueChanged();
|
valueChanged();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public synchronized void removeSliderListener(SliderListener l)
|
public synchronized void removeSliderListener(SliderListener l)
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class Properties
|
||||||
private static Properties instance = new Properties();
|
private static Properties instance = new Properties();
|
||||||
private Vector<ActionListener> propertiesListeners = new Vector<ActionListener>();
|
private Vector<ActionListener> propertiesListeners = new Vector<ActionListener>();
|
||||||
public final String title = "sd2-trackeditor";
|
public final String title = "sd2-trackeditor";
|
||||||
public final String version = "1.3.27";
|
public final String version = "1.3.28";
|
||||||
private String path;
|
private String path;
|
||||||
|
|
||||||
private double imageScale = 1;
|
private double imageScale = 1;
|
||||||
|
|
Loading…
Reference in a new issue