X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/cc2c5bee0d8c8b86765730ee250b71e39d196b26..c5bb99fa2019da12a8fbaa1766189af520b9e79a:/lib/gui/elistboxcontent.cpp diff --git a/lib/gui/elistboxcontent.cpp b/lib/gui/elistboxcontent.cpp index dccd1b05..3c9457e1 100644 --- a/lib/gui/elistboxcontent.cpp +++ b/lib/gui/elistboxcontent.cpp @@ -558,8 +558,6 @@ static void clearRegionSelectedHelper(gPainter &painter, eListboxStyle *local_st painter.blit(local_style->m_background, offset, eRect(), 0); return; } - else if (local_style->m_transparent_background) - return; } painter.clear(); } @@ -911,6 +909,10 @@ void eListboxPythonMultiContent::paint(gPainter &painter, eWindowStyle &style, c if ((filled < 0) && data) /* if the string is in a negative number, it refers to the 'data' list. */ filled = PyInt_AsLong(PyTuple_GetItem(data, -filled)); + + /* don't do anything if percent out of range */ + if ((filled < 0) || (filled > 100)) + continue; int bwidth = pborderWidth ? PyInt_AsLong(pborderWidth) : 2;