Jog wheel led off in TT mode and On in Jog mode?
I changed the colour to off in the deckhelpers folder and that works for TT mode. Want to know if there's a way to have the jog led on when I change to Jog mode?
You will have to adjust another file:
'…\Native Instruments\Traktor Pro 4\Resources64\qml\CSI\S4MK3\S4MK3Deck.qml', line 88
From:
MappingPropertyDescriptor { id: jogMode path: deckPropertiesPath + ".jog_mode" type: MappingPropertyDescriptor.Integer }
To:
MappingPropertyDescriptor { id: jogMode path: deckPropertiesPath + ".jog_mode" type: MappingPropertyDescriptor.Integer onValueChanged: { if (value === JogwheelMode.Turntable) { deckColorProp.value = Color.Black; } else deckColorProp.value = module.deckColor; } }
Works great!
thanks you
Send us a vid? 🙃