Catch some stray command.call invocations

This commit is contained in:
Aldo Cortesi 2018-05-02 12:08:15 +12:00
parent 38ff8109fb
commit 2f3ba1f66d
2 changed files with 4 additions and 4 deletions

View File

@ -79,11 +79,11 @@ class FlowListBox(urwid.ListBox, layoutwidget.LayoutWidget):
def keypress(self, size, key):
if key == "m_start":
self.master.commands.call("view.go 0")
self.master.commands.execute("view.go 0")
elif key == "m_end":
self.master.commands.call("view.go -1")
self.master.commands.execute("view.go -1")
elif key == "m_select":
self.master.commands.call("console.view.flow @focus")
self.master.commands.execute("console.view.flow @focus")
return urwid.ListBox.keypress(self, size, key)
def view_changed(self):

View File

@ -98,7 +98,7 @@ class FlowDetails(tabs.Tabs):
msg, body = "", [urwid.Text([("error", "[content missing]")])]
return msg, body
else:
full = self.master.commands.call("view.getval @focus fullcontents false")
full = self.master.commands.execute("view.getval @focus fullcontents false")
if full == "true":
limit = sys.maxsize
else: