Skip to content

Commit

Permalink
Added Reverse with SHIFT+FLUX to Kontrol S5
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPatben8 committed Nov 22, 2018
1 parent 9dfa94a commit 6152597
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions qml/CSI/S5/S5Deck.qml
Original file line number Diff line number Diff line change
Expand Up @@ -3746,7 +3746,8 @@ Module

enabled: (focusedDeckId == 1) && (hasTransport(deckAType))

Wire { from: "%surface%.flux"; to: "decks.1.transport.flux" }
Wire { from: "%surface%.flux"; to: "decks.1.transport.flux" ; enabled: !module.shift}
Wire { from: "%surface%.flux"; to: "decks.1.transport.flux_reverse" ; enabled: module.shift}

WiresGroup
{
Expand Down Expand Up @@ -3804,7 +3805,8 @@ Module

enabled: (focusedDeckId == 2) && (hasTransport(deckBType))

Wire { from: "%surface%.flux"; to: "decks.2.transport.flux" }
Wire { from: "%surface%.flux"; to: "decks.2.transport.flux" ; enabled: !module.shift}
Wire { from: "%surface%.flux"; to: "decks.2.transport.flux_reverse" ; enabled: module.shift}

WiresGroup
{
Expand Down Expand Up @@ -3862,7 +3864,8 @@ Module

enabled: (focusedDeckId == 3) && (hasTransport(deckCType))

Wire { from: "%surface%.flux"; to: "decks.3.transport.flux" }
Wire { from: "%surface%.flux"; to: "decks.3.transport.flux" ; enabled: !module.shift}
Wire { from: "%surface%.flux"; to: "decks.3.transport.flux_reverse" ; enabled: module.shift}

WiresGroup
{
Expand Down Expand Up @@ -3920,7 +3923,8 @@ Module

enabled: (focusedDeckId == 4) && (hasTransport(deckDType))

Wire { from: "%surface%.flux"; to: "decks.4.transport.flux" }
Wire { from: "%surface%.flux"; to: "decks.4.transport.flux" ; enabled: !module.shift}
Wire { from: "%surface%.flux"; to: "decks.4.transport.flux_reverse" ; enabled: module.shift}

WiresGroup
{
Expand Down

0 comments on commit 6152597

Please sign in to comment.