diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-05-20 19:33:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-05-20 19:33:43 +0000 |
| commit | 34c3f1a742135c764ced560e8479e77129082301 (patch) | |
| tree | 59a497904698c4290b0668075366eaf1acef37fa | |
| parent | 094b454c7e3b86cdcff697bb68cd367e53ba9e8e (diff) | |
| download | enigma2-34c3f1a742135c764ced560e8479e77129082301.tar.gz enigma2-34c3f1a742135c764ced560e8479e77129082301.zip | |
- skip first field in flexible python listbox to allow having private data.
| -rw-r--r-- | lib/gui/elistboxcontent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/elistboxcontent.cpp b/lib/gui/elistboxcontent.cpp index 54e3a24d..94ad0bcb 100644 --- a/lib/gui/elistboxcontent.cpp +++ b/lib/gui/elistboxcontent.cpp @@ -456,7 +456,7 @@ void eListboxPythonMultiContent::paint(gPainter &painter, eWindowStyle &style, c } int size = PyList_Size(items); - for (int i = 0; i < size; ++i) + for (int i = 1; i < size; ++i) { PyObject *item = PyList_GetItem(items, i); // borrowed reference! |
