mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
gui/widget/listframe: change up/down to use setSelectedLine() (fix II)
Origin commit data
------------------
Commit: 139becd4f9
Author: martii <m4rtii@gmx.de>
Date: 2013-07-20 (Sat, 20 Jul 2013)
This commit is contained in:
@@ -521,7 +521,7 @@ void CListFrame::scrollLineUp(const int lines)
|
||||
if( !(m_nMode & SCROLL)) return;
|
||||
if( m_nNrOfLines <= 1) return;
|
||||
|
||||
setSelectedLine((m_nNrOfLines - lines + m_nSelectedLine - 1) % m_nNrOfLines);
|
||||
setSelectedLine((m_nSelectedLine - lines + m_nNrOfLines) % m_nNrOfLines);
|
||||
}
|
||||
|
||||
void CListFrame::scrollPageDown(const int pages)
|
||||
|
Reference in New Issue
Block a user