Side Bar header (GAP. INTERVAL, BEST LAP, etc)

Posts: 42
I have looked at the 2020 theme and dont see anything different between it and mine other then the folders, but when you click GAP and then BEST LAP the title changes with the info in the side bar. What am I doing wrong? Do they all need to be in the folder group to work?

Edited (1 time)
Posts: 785
The label text is changed at the end of the "SetTickerMode" function:
var text = GetModeDisplayText(TimingDisplayProvider.CurrentModeV);
TimingDisplayProvider.GetModeLabel(item.Theme).Text = text;


private string GetModeDisplayText(TimingDisplayModes mode)
        {
            switch (mode)
            {
                case TimingDisplayModes.Gap:
                    return "GAP";
                case TimingDisplayModes.Interval:
                    return "INTERVAL";
                case TimingDisplayModes.Pitstops:
                    return "PITSTOPS";
              case TimingDisplayModes.LastLap:
                    return "LAST LAP";
                case TimingDisplayModes.BestLap:
                    return "BEST LAP";
                case TimingDisplayModes.JokerLapsRemaining:
                    return "JOKER LAPS REMAINING";
                case TimingDisplayModes.JokerLapsCompleted:
                    return "JOKER LAPS COMPLETED";
            }
return "";
        }

Edited (1 time)
Posts: 42
Hmm, I did not take that out of the script but it is not changing for me. I will keep playing with it.
Posts: 42
Unless I am blind as a bat I cant seem to find anything that would be causing it to not work. (there is a good chance I am blind)
Posts: 42
@nick if I email you my .atvotheme file could you look at it and see what I am doing wrong? I have not a clue at this point.
Posts: 42
...
Edited (1 time)