Made scrolling not reset the breadcrumbs in AddTorrents as it's meaningless

This commit is contained in:
Asmageddon 2012-07-13 12:40:17 +02:00
parent ef522ba292
commit c554bf9edd
1 changed files with 0 additions and 4 deletions

View File

@ -252,8 +252,6 @@ class AddTorrents(BaseMode, component.Component):
if self.cursel < self.view_offset + 1: if self.cursel < self.view_offset + 1:
self.view_offset = max(self.cursel - 1, 0) self.view_offset = max(self.cursel - 1, 0)
self.path_stack = self.path_stack[:self.path_stack_pos]
def scroll_list_down(self, distance): def scroll_list_down(self, distance):
self.cursel += distance self.cursel += distance
if self.cursel >= len(self.formatted_rows): if self.cursel >= len(self.formatted_rows):
@ -262,8 +260,6 @@ class AddTorrents(BaseMode, component.Component):
if (self.view_offset + self._listing_space) <= self.cursel + 1: if (self.view_offset + self._listing_space) <= self.cursel + 1:
self.view_offset = self.cursel - self._listing_space + 1 self.view_offset = self.cursel - self._listing_space + 1
self.path_stack = self.path_stack[:self.path_stack_pos]
def set_popup(self,pu): def set_popup(self,pu):
self.popup = pu self.popup = pu
self.refresh() self.refresh()