Kodi Community Forum

Full Version: Focused Layout Label Scrolling
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I make a label in the focusedlayout of a fixedlist stop scrolling? At the moment my label control looks like this...

Quote:
<control type="label"> <!--tv show title normal-->
<posx>90</posx>
<posy>180</posy>
<width>705</width>
<align>left</align>
<font>breeze45</font>
<textcolor>infogrey</textcolor>
<label>$INFO[ListItem.Title]</label>
<visible>!Skin.HasSetting(stylishfont)</visible>
<scroll>false</scroll>
<scrolltime>0</scrolltime>
</control>

..and the label still scrolls. Is there any way to stop it from doing so? As you can see I've tried changing <scroll> and <scrollspeed> but it makes no difference.

Thanks.
focusedlayout items scroll by default and itemlayout ones don't.

It seems that only itemlayout can be overridden by adding <scroll>true</scroll> whereas focusedlayout can't.

Should be up to the skinner really, no?
Thought that might be the case, and yes I really think it should be up to the skinner.

Edit: If you out the label in a group control then it doesn't scroll