tbe, this cant possible still be happening.
I download openatv 7.0 from this week. It had the error.
I update my skins, I no longer have this error.
Have you actually checked the skin file on your box.
q-general
and the messagebox code should now look like this
Notice line 22 below. It is checking self.list is not None.
Your orignal error was because openatv made this self.list = None.
Python
<applet type="onLayoutFinish">from enigma import getDesktop, eSize, ePoint
desktop_w = getDesktop(0).size().width()
desktop_h = getDesktop(0).size().height()
listcount = 0
iconsize = 53
itemheight = 45
padding = 45
maxwidth = desktop_w - 120
minwidth = desktop_w // 2
listwidth = self["list"].instance.size().width() + (iconsize + padding)
if listwidth > maxwidth:
listwidth = maxwidth
if listwidth < minwidth:
listwidth = minwidth
maxtextwidth = listwidth
minheight = iconsize
if self["list"] and self.list is not None:
listcount = self["list"].count()
if itemheight*listcount > minheight:
minheight = itemheight*listcount
Display More
