I have a list that is controlled by a hidden button for movement and as such is never focused, so in order for the labels in the focused layout to scroll I use a label with <scroll> set to true like so:
Something weird I've just noticed is that the label scrolls from start to end exactly 3 times then stops and will never scroll again, even if I change to the next list item and then back again. The only way to get it to scroll again is to back out of the window and open it again. I'm using Kodi 18.8
Is this a bug or is there some control tag I'm missing to set the number of repeats for scrolling?
Code:
<control type="label">
<left>48</left>
<width>338</width>
<top>572</top>
<height>60</height>
<align>center</align>
<font>ItemLabelSecondary</font>
<textcolor>TextBright</textcolor>
<scrollsuffix> • </scrollsuffix>
<scroll>true</scroll>
<label>$INFO[ListItem.label]</label>
</control>
Something weird I've just noticed is that the label scrolls from start to end exactly 3 times then stops and will never scroll again, even if I change to the next list item and then back again. The only way to get it to scroll again is to back out of the window and open it again. I'm using Kodi 18.8
Is this a bug or is there some control tag I'm missing to set the number of repeats for scrolling?