🔥 Lifetime deal! Get Control Surface Studio for Just £67 👉 Click Here To Get It
Time left... mailtimers.com
⚠️ Lifetime licenses are ending soon, get yours before they're gone ⚠️
Your shopping cart is empty.

Highlight Navigation Problem | Folded Tracks

Submitted by tobiassen on Fri, 11/18/2022 - 21:00
tobiassen
Control Surface Studio User

I'm adding this question to bugs (because it clearly is a bug):
https://remotify.io/community/question/highlight-navigation-problem-fold...

The "Highlight Navigation" Mapping works for scenes, but if you have folded tracks, it does not work for tracks with higher index than the folded tracks as described in the thread above.

I did a work around with this reaction:

self.set_highlighted_track(0*)
(*or another track relative to sessbox)

AND changing the pythong code in the .py file from:

def set_highlighted_track(self, n):
self.song().view.selected_track = self.song().tracks[n]

to:

def set_highlighted_track(self, n):
self.song().view.selected_track = self.song().visible_tracks[self.track_num(n)]

...this took me quite some time to figure out and of course is annoying to work with.
A more smoother implementation would be great!?!...

Topic Category: 

2 Responses

Comments

tobiassen
Control Surface Studio User
#1

btw: "Arm" from the track selector seems to have the same problem...

tobiassen
Control Surface Studio User
#2

...my bad, "arm" from the track selector works fine!