Skip to content

Commit

Permalink
Added Flux Reverse to S8-Style Decks. Press and hold SHIFT+FLUX to ac…
Browse files Browse the repository at this point in the history
…tivate
  • Loading branch information
MrPatben8 committed Nov 22, 2018
1 parent bd501f7 commit 9dfa94a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions qml/CSI/Common/Deck_S8Style.qml
Original file line number Diff line number Diff line change
Expand Up @@ -4093,7 +4093,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 @@ -4151,7 +4152,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 @@ -4209,7 +4211,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 @@ -4267,7 +4270,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 9dfa94a

Please sign in to comment.