Highlight Navigation Problem | Folded Tracks

1.63K viewsCSS Bugs
0

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!?!…

admin Changed status to publish
Attached Files:
0

btw: “Arm” from the track selector seems to have the same problem…

admin Changed status to publish
Attached Files:
You are viewing 1 out of 2 answers, click here to view all answers.