If it bothers anyone that SoftTakeover_Up or Down .gif is not displayed on the screen of the PatternPlayer with Knob2, I have a solution here🙂
go to the following directory:
"C:\Program Files\Native Instruments\Traktor Pro 4\Resources64\qml\Screens\X1MK3\FXScreen.qml"
Make a backup of the file FXScreen.qml and edit it
search: [line: 386]
AnimatedImage {
anchors {
bottom: parent.bottom
right: valueText.left
rightMargin: -10
}
visible: (softTakeoverDirection !== 0) && hasParameter(lastTouchedKnob)
source: softTakeoverDirection === 1 ? "Images/SoftTakeoverUp.gif" : "Images/SoftTakeoverDown.gif"
fillMode: Image.PreserveAspectFit
}
}
insert below:
AnimatedImage {
anchors {
bottom: parent.bottom
bottomMargin: 31
}
visible: (softTakeoverDirection !== 0) && hasParameter(lastTouchedKnob) && knobsAreActive && lastTouchedKnob == 2 && isPatternPlayer
source: softTakeoverDirection === 1 ? "Images/SoftTakeoverUp.gif" : "Images/SoftTakeoverDown.gif"
fillMode: Image.PreserveAspectFit
width: 241
}