summaryrefslogtreecommitdiff
path: root/poezio/windows
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows')
-rw-r--r--poezio/windows/data_forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/windows/data_forms.py b/poezio/windows/data_forms.py
index 53a0adca..7b405747 100644
--- a/poezio/windows/data_forms.py
+++ b/poezio/windows/data_forms.py
@@ -433,10 +433,10 @@ class FormWin(object):
self.inputs[self.current_input]['input'].set_color(get_theme().COLOR_SELECTED_ROW)
self.inputs[self.current_input]['label'].set_color(get_theme().COLOR_SELECTED_ROW)
- def on_input(self, key):
+ def on_input(self, key, raw=False):
if not self.inputs:
return
- self.inputs[self.current_input]['input'].do_command(key)
+ self.inputs[self.current_input]['input'].do_command(key, raw=raw)
def refresh(self):
self._win.erase()