Merge branch 'master' of hodgp.no-ip.org:~/checkouts/newfol
This commit is contained in:
commit
7726e34fc0
1 changed files with 2 additions and 2 deletions
4
newfol
4
newfol
|
|
@ -261,7 +261,7 @@ class RecordEditBox(urwid.Edit, Tabbable):
|
|||
self.set_edit_text("choisi")
|
||||
def keypress(self, size, key):
|
||||
try:
|
||||
if len(key) > 1:
|
||||
if len(key) > 1 and key != "enter":
|
||||
key = DatabaseData().keys[key]
|
||||
except:
|
||||
pass
|
||||
|
|
@ -993,7 +993,7 @@ class SearchListView(RecordListView):
|
|||
for i in range(1, len(self.selected)):
|
||||
if self.selected[i]:
|
||||
selected.append(i-1)
|
||||
return self._render_records(self.loop, "List of matching records",
|
||||
self.widget = self._render_records(self.loop, "List of matching records",
|
||||
self.records, selected)
|
||||
|
||||
class MessageBox(View):
|
||||
|
|
|
|||
Loading…
Reference in a new issue