kopia lustrzana https://github.com/jameshball/osci-render
rodzic
2fe68e3126
commit
c63c91eeab
|
@ -1,3 +1,7 @@
|
||||||
|
- 1.24.7
|
||||||
|
- Double-click of slider resets value to 0 rather than min
|
||||||
|
|
||||||
|
|
||||||
- 1.24.6
|
- 1.24.6
|
||||||
- Effect text boxes are now editable
|
- Effect text boxes are now editable
|
||||||
- Version number now visible in File menu
|
- Version number now visible in File menu
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>sh.ball</groupId>
|
<groupId>sh.ball</groupId>
|
||||||
<artifactId>osci-render</artifactId>
|
<artifactId>osci-render</artifactId>
|
||||||
<version>1.24.6</version>
|
<version>1.24.7</version>
|
||||||
|
|
||||||
<name>osci-render</name>
|
<name>osci-render</name>
|
||||||
|
|
||||||
|
|
|
@ -319,7 +319,7 @@ public class MainController implements Initializable, FrequencyListener, MidiLis
|
||||||
sliders.get(i).maxProperty().addListener(e -> updateClosestChannelToZero(sliders.get(finalI)));
|
sliders.get(i).maxProperty().addListener(e -> updateClosestChannelToZero(sliders.get(finalI)));
|
||||||
sliders.get(i).setOnMouseClicked(event -> {
|
sliders.get(i).setOnMouseClicked(event -> {
|
||||||
if (event.getClickCount() == 2) {
|
if (event.getClickCount() == 2) {
|
||||||
sliders.get(finalI).setValue(sliders.get(finalI).getMin());
|
sliders.get(finalI).setValue(0);
|
||||||
}
|
}
|
||||||
subControllers().forEach(SubController::slidersUpdated);
|
subControllers().forEach(SubController::slidersUpdated);
|
||||||
});
|
});
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<menus>
|
<menus>
|
||||||
<Menu mnemonicParsing="false" text="File">
|
<Menu mnemonicParsing="false" text="File">
|
||||||
<items>
|
<items>
|
||||||
<MenuItem disable="true" mnemonicParsing="false" text="osci-render v1.24.6" />
|
<MenuItem disable="true" mnemonicParsing="false" text="osci-render v1.24.7" />
|
||||||
<MenuItem fx:id="openProjectMenuItem" mnemonicParsing="false" text="Open Project">
|
<MenuItem fx:id="openProjectMenuItem" mnemonicParsing="false" text="Open Project">
|
||||||
<accelerator>
|
<accelerator>
|
||||||
<KeyCodeCombination alt="UP" code="O" control="UP" meta="UP" shift="UP" shortcut="DOWN" />
|
<KeyCodeCombination alt="UP" code="O" control="UP" meta="UP" shift="UP" shortcut="DOWN" />
|
||||||
|
|
Ładowanie…
Reference in New Issue