Made scrolling not reset the breadcrumbs in AddTorrents as it's meaningless
This commit is contained in:
parent
ef522ba292
commit
c554bf9edd
|
@ -252,8 +252,6 @@ class AddTorrents(BaseMode, component.Component):
|
|||
if self.cursel < self.view_offset + 1:
|
||||
self.view_offset = max(self.cursel - 1, 0)
|
||||
|
||||
self.path_stack = self.path_stack[:self.path_stack_pos]
|
||||
|
||||
def scroll_list_down(self, distance):
|
||||
self.cursel += distance
|
||||
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:
|
||||
self.view_offset = self.cursel - self._listing_space + 1
|
||||
|
||||
self.path_stack = self.path_stack[:self.path_stack_pos]
|
||||
|
||||
def set_popup(self,pu):
|
||||
self.popup = pu
|
||||
self.refresh()
|
||||
|
|
Loading…
Reference in New Issue