Kodi Community Forum
Solved Scroll bar in slim list - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Neon (https://forum.kodi.tv/forumdisplay.php?fid=139)
+----- Thread: Solved Scroll bar in slim list (/showthread.php?tid=172950)



Scroll bar in slim list - Tennyten - 2013-09-07

This has probably been covered but cant find the answer. Where can I modify the slim list scroll bar to scroll from the bottom of the list back to the top like in confluence? When i hit the bottom of the list I have to scroll all the way back up to get back to the top of the list and would like it to be continuous. Thanks.


RE: Scroll bar in slim list - Kib - 2014-02-09

In 720p/Viewtype_Slimlist.xml

Find:
Code:
<control type="fixedlist" id="598">
      <posx>0</posx>
      <posy>520</posy>
      <height>185</height>
      <width>480</width>
      <onup>598</onup>
      <ondown>50</ondown>
      <onleft>7000</onleft>
      <onright>60</onright>
      <scrolltime>0</scrolltime>
      <viewtype label="$LOCALIZE[31134]">list</viewtype>

Change from
Code:
<ondown>50</ondown>

Change to
Code:
<ondown>598</ondown>

This will be fixed in next version.


RE: Scroll bar in slim list - Tennyten - 2014-04-25

Perfect!