-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cycle through MixerFX on S5/S8 using SHIFT-FILTER.
- Loading branch information
Showing
444 changed files
with
60,460 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import CSI 1.0 | ||
|
||
Module | ||
{ | ||
id: module | ||
property string surface: "" | ||
property int deckIdx: 0 | ||
property bool shift: false | ||
property bool navigateFavoritesOnShift: true | ||
|
||
Browser { name: "browser" } | ||
|
||
WiresGroup | ||
{ | ||
enabled: !shift | ||
|
||
Wire { from: "%surface%.browse.encoder.push"; to: TriggerPropertyAdapter { path: "app.traktor.decks." + deckIdx + ".load.selected" } } | ||
Wire { from: "%surface%.browse.encoder"; to: "browser.list_navigation" } | ||
Wire { from: "%surface%.browse.back"; to: "browser.add_remove_from_prep_list" } | ||
} | ||
|
||
WiresGroup | ||
{ | ||
enabled: shift | ||
|
||
Wire { from: "%surface%.browse.encoder"; to: "browser.favorites_navigation"; enabled: navigateFavoritesOnShift } | ||
Wire { from: "%surface%.browse.encoder"; to: "browser.tree_navigation"; enabled: !navigateFavoritesOnShift } | ||
|
||
Wire { from: "%surface%.browse.back"; to: "browser.jump_to_prep_list" } | ||
} | ||
|
||
Wire { from: "%surface%.browse.mode"; to: "browser.full_screen" } | ||
} |
Oops, something went wrong.