mirror of
https://github.com/badvision/lawless-legends.git
synced 2025-02-14 12:30:55 +00:00
Minor stuff
This commit is contained in:
parent
b5e2bbb485
commit
9692f89145
12
Platform/Apple/tools/jace/8bitbunch.xml
Normal file
12
Platform/Apple/tools/jace/8bitbunch.xml
Normal file
File diff suppressed because one or more lines are too long
@ -234,7 +234,11 @@ public class JaceUIController {
|
||||
}
|
||||
});
|
||||
speedSlider.valueProperty().addListener((val, oldValue, newValue) -> setSpeed(newValue.doubleValue()));
|
||||
Platform.runLater(() -> speedSlider.setValue(Emulator.logic.speedSetting));
|
||||
Platform.runLater(() -> {
|
||||
speedSlider.setValue(Emulator.logic.speedSetting);
|
||||
// Kind of redundant but make sure speed is properly set as if the user did it
|
||||
setSpeed(Emulator.logic.speedSetting);
|
||||
});
|
||||
}
|
||||
|
||||
private void connectButtons(Node n) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user