Skip to content

Commit 4118d13

Browse files
committed
* All devices
* Fixed: Button combinations on session grid did always execute clip play. * Launchkey Mk3 * Fixed: Parameter Pages 9-16 could not be accessed. * Push 3 * New: Added configuration page for audio interface
1 parent 2d463af commit 4118d13

21 files changed

+1033
-458
lines changed

DrivenByMoss-Manual.pdf

750 Bytes
Binary file not shown.

dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>de.mossgrabers</groupId>
55
<artifactId>DrivenByMoss</artifactId>
66
<name>DrivenByMoss</name>
7-
<version>21.1.0</version>
7+
<version>21.2.0</version>
88
<licenses>
99
<license>
1010
<name>LGPL-2.1-or-later</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>DrivenByMoss</artifactId>
77
<packaging>jar</packaging>
88
<name>DrivenByMoss</name>
9-
<version>21.1.0</version>
9+
<version>21.2.0</version>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
</properties>

src/main/java/de/mossgrabers/bitwig/framework/daw/data/bank/ParameterBankImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public ParameterBankImpl (final IHost host, final IValueChanger valueChanger, fi
4343
{
4444
super (host, numParams);
4545

46-
this.pageBank = numParams > 0 ? new ParameterPageBankImpl (remoteControlsPage, numParams) : null;
46+
this.pageBank = numParams > 0 ? new ParameterPageBankImpl (remoteControlsPage, numParamPages) : null;
4747

4848
this.valueChanger = valueChanger;
4949
this.remoteControls = remoteControlsPage;

src/main/java/de/mossgrabers/bitwig/framework/daw/data/bank/ParameterPageBankImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ public void addSelectionObserver (final IItemSelectionObserver observer)
205205
public int getScrollPosition ()
206206
{
207207
final int selectedItemPosition = this.getSelectedItemPosition ();
208-
return selectedItemPosition / this.getPageSize () * this.getPageSize ();
208+
final int ps = this.getPageSize ();
209+
return selectedItemPosition / ps * ps;
209210
}
210211

211212

0 commit comments

Comments
 (0)