mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 00:11:08 +02:00
fix pagedown logic, but this time for real (i hope)
Why this was so difficult code? I don't know.
Origin commit data
------------------
Branch: ni/coolstream
Commit: b00e78a165
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-01-15 (Fri, 15 Jan 2016)
Origin message was:
------------------
- fix pagedown logic, but this time for real (i hope)
Why this was so difficult code? I don't know.
------------------
This commit was generated by Migit
This commit is contained in:
@@ -742,13 +742,11 @@ int CChannelList::show()
|
||||
displayList = 1;
|
||||
int step = ((int) msg == g_settings.key_pagedown) ? listmaxshow : 1; // browse or step 1
|
||||
int new_selected = selected + step;
|
||||
if (new_selected >= (int) (*chanlist).size()) {
|
||||
if ((((*chanlist).size() - listmaxshow -1 < selected) && (step != 1)) || (selected != ((*chanlist).size() - 1)))
|
||||
if (new_selected > (int) (*chanlist).size() - 1) {
|
||||
if ((selected != (*chanlist).size() - 1))
|
||||
new_selected = (*chanlist).size() - 1;
|
||||
else if ((((*chanlist).size() / listmaxshow) + 1) * listmaxshow == (*chanlist).size() + listmaxshow) // last page has full entries
|
||||
new_selected = 0;
|
||||
else
|
||||
new_selected = ((step == (int) listmaxshow) && (new_selected < (int) ((((*chanlist).size() / listmaxshow)+1) * listmaxshow))) ? ((*chanlist).size() - 1) : 0;
|
||||
new_selected = 0;
|
||||
}
|
||||
actzap = updateSelection(new_selected);
|
||||
}
|
||||
|
Reference in New Issue
Block a user