Yet another search scrolling bug

This commit is contained in:
Asmageddon 2012-05-27 17:19:37 +02:00
parent 39a896e59e
commit 09c830c6ae
1 changed files with 2 additions and 2 deletions

View File

@ -920,8 +920,8 @@ class AllTorrents(BaseMode, component.Component):
n = n.lower()
if n.find(search_string) >= 0:
self.cursel = (i+1)
if ((self.curoff - 4) > self.cursel):
self.curoff = max(1, self.cursel - 4)
if ((self.curoff + 1) > self.cursel):
self.curoff = max(1, self.cursel - 1)
self.search_state = SEARCH_SUCCESS
return
self.search_state = SEARCH_START_REACHED