Would love to be able to disable Stem loading on a double press

DanteBen
DanteBen Member Posts: 17 Member

I’m never using stems, and being forced to have stem loading on a double click of the load knob is not great. Live stem separation during a set crunches my CPU and causes audio glitching.

Comments

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 2,628 mod
    edited October 4

    Which controller is the above mentioned 'knob' attached to?

    Edit: Depending on the answer i can point you to one of two files that you can edit to reinstate the TP3 load function.

  • DanteBen
    DanteBen Member Posts: 17 Member

    I’m using an S4 Mk3.

  • Sûlherokhh
    Sûlherokhh Member, Traktor Mapping Mod Posts: 2,628 mod

    Open the file '…\Native Instruments\Traktor Pro 4\Resources64\qml\CSI\Common\ExtendedBrowserModule.qml' in a good coding editor like notepad++.

    Find these lines …

      Wire { from: "%surface%.browse.encoder.push"; to: "browser_load_gestures.input" }
      Wire { from: "browser_load_gestures.single_click"; to: TriggerPropertyAdapter { path: "app.traktor.decks." + deckIdx + ".load.selected"; output: false } }
      Wire { from: "browser_load_gestures.double_click"; to: TriggerPropertyAdapter { path: "app.traktor.decks." + deckIdx + ".load_secondary.selected"; output: false } }
    

    … and replace all of them with the following line

      Wire { from: "%surface%.browse.encoder.push"; to: TriggerPropertyAdapter { path: "app.traktor.decks." + deckIdx + ".load.selected" } }
    

    Don't forget to make a copy of the original qml folder before modifying any of its contents.

Back To Top