diff options
author | chriszero <zerov83@gmail.com> | 2015-07-05 16:28:53 +0200 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-07-05 16:28:53 +0200 |
commit | d62b88d76ff70116bf581acbb5ba61bbd7c6e9f1 (patch) | |
tree | 4e36cf58e2ee1fab227dbca1ecff776c13891d8f /viewGridNavigator.h | |
parent | b6a84937d98ee1bf1bb91d87e0d660129f42d367 (diff) | |
download | vdr-plugin-plex-d62b88d76ff70116bf581acbb5ba61bbd7c6e9f1.tar.gz vdr-plugin-plex-d62b88d76ff70116bf581acbb5ba61bbd7c6e9f1.tar.bz2 |
Implements Feature #2202
Scroll all around
Scroll pagewise
Diffstat (limited to 'viewGridNavigator.h')
-rw-r--r-- | viewGridNavigator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewGridNavigator.h b/viewGridNavigator.h index 90e732a..c619300 100644 --- a/viewGridNavigator.h +++ b/viewGridNavigator.h @@ -45,8 +45,8 @@ protected: bool m_setIterator; std::vector<cGridElement*> m_vElements; std::vector<cGridElement*>::iterator m_activeElementIter; - std::vector<cGridElement*>::iterator m_firstElementIter; - std::vector<cGridElement*>::iterator m_lastElementIter; + int m_startIndex = 0; + int m_endIndex = 0; void GenerateServerElements(); void FilterElements(int scrollOffset); |