diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-13 15:27:32 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-13 15:27:32 +0000 |
| commit | 83dc65144ec5b7d412f959afd2abb947580f7121 (patch) | |
| tree | bbff84f2cb7df7924f6e5f37980e76c547ec1a6d /lib/gui/elistboxcontent.cpp | |
| parent | d545fceb99fa32b01ee131cf7867eb5e21702edb (diff) | |
| download | enigma2-83dc65144ec5b7d412f959afd2abb947580f7121.tar.gz enigma2-83dc65144ec5b7d412f959afd2abb947580f7121.zip | |
add option cursorHome to eListbox::entryReset
Diffstat (limited to 'lib/gui/elistboxcontent.cpp')
| -rw-r--r-- | lib/gui/elistboxcontent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/elistboxcontent.cpp b/lib/gui/elistboxcontent.cpp index dea72a6c..95d92e09 100644 --- a/lib/gui/elistboxcontent.cpp +++ b/lib/gui/elistboxcontent.cpp @@ -246,7 +246,7 @@ void eListboxStringContent::setList(std::list<std::string> &list) m_list = list; m_size = list.size(); cursorHome(); - m_listbox->entryReset(); + m_listbox->entryReset(false); } ////////////////////////////////////// @@ -368,7 +368,7 @@ void eListboxPythonStringContent::setList(PyObject *list) } if (m_listbox) - m_listbox->entryReset(); + m_listbox->entryReset(false); } PyObject *eListboxPythonStringContent::getCurrentSelection() |
