Don't return when space bar is pressed in fileBrowser module
This commit is contained in:
parent
bf696ba53a
commit
c19a200b8d
@ -763,7 +763,7 @@ class fileBrowser(Listbox):
|
|||||||
return 1
|
return 1
|
||||||
elif curses.ascii.isprint(c):
|
elif curses.ascii.isprint(c):
|
||||||
self.search(chr(c))
|
self.search(chr(c))
|
||||||
return 1
|
# return 1
|
||||||
elif c == curses.KEY_UP:
|
elif c == curses.KEY_UP:
|
||||||
if self.pos == 0:
|
if self.pos == 0:
|
||||||
#we don't want to wrap around to the top
|
#we don't want to wrap around to the top
|
||||||
|
Loading…
Reference in New Issue
Block a user