Don't return True by default in handleKey
This commit is contained in:
parent
1a4575f018
commit
d31d1cbd3e
@ -56,7 +56,7 @@ enter selects default button or displays error if not one
|
|||||||
i.draw()
|
i.draw()
|
||||||
|
|
||||||
def handleKey(self, c):
|
def handleKey(self, c):
|
||||||
ret = 1
|
ret = 0
|
||||||
if c == curses.KEY_DOWN:
|
if c == curses.KEY_DOWN:
|
||||||
if self.controlIndex >= len(self.controls) -1:
|
if self.controlIndex >= len(self.controls) -1:
|
||||||
self.beepIfNeeded()
|
self.beepIfNeeded()
|
||||||
|
Loading…
Reference in New Issue
Block a user