Release Titan skin version 3.6.x (Kodi 16 Jarvis)
(2016-03-22, 19:32)oattes Wrote: The bulk of the text presented in the 'Nextup Service Notification' seems to have gone missing.
Note only the title shows -- missing episode number and plot information.

OK, in the self-help category, it looks like the problem is in script-nextup-notification-NextUpInfo.xml. Specifically in the definition of the text box lines 109+. This seems to throw an exception in that the textbox control is assigned an id for a label control. The nextup service creates this label. Maybe you were going somewhere with this to get better formating of the plot data?

In any case, I have a patch that works for me:

<control type="label" id="3001"><!-- Plot -->
<left>292</left>
<bottom>85</bottom>
<width>65%</width>
<height>40</height>
<font>font10</font>
<wrapmultiline>true</wrapmultiline>
<scroll>true</scroll>
</control>

As always, perhaps you can take my fumbling as a starting point for a better fix ;-).

NOTE: as Marcel points out the problem is with the NextUp Service. Don't use my hack above. If you want a fix, try:

resources/lib/NextUpInfo.py


# set the dialog data
self.getControl(3000).setLabel(name)
add this line -> self.getControl(3001).setText(overview)
remove this line -> self.getControl(3001).setLabel(overview)
self.getControl(3002).setLabel(episodeInfo)
self.getControl(3004).setLabel(info)
Reply


Messages In This Thread
RE: Titan skin version 3.6.x (Kodi 16 Jarvis) - by oattes - 2016-03-25, 04:37
Link to a specific home screen? - by Hardax - 2016-03-28, 15:31
Landscape View Scrolbar - by User 206796 - 2016-09-19, 00:54
Logout Mark Read Team Forum Stats Members Help
Titan skin version 3.6.x (Kodi 16 Jarvis)11