diff options
Diffstat (limited to 'asciifarm/client/commandhandler.py')
| -rw-r--r-- | asciifarm/client/commandhandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asciifarm/client/commandhandler.py b/asciifarm/client/commandhandler.py index ebb773e..550484c 100644 --- a/asciifarm/client/commandhandler.py +++ b/asciifarm/client/commandhandler.py @@ -61,8 +61,8 @@ class CommandHandler: for action in actions: self.execute(action) - def runInput(self): - self.client.inputHandler.startTyping() + def runInput(self, startText=""): + self.client.inputHandler.startTyping(startText) def select(self, widget, value, relative=False, modular=False): self.client.display.getWidget(widget).select(value, relative, modular) |
