summaryrefslogtreecommitdiff
path: root/src/tabs/data_forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabs/data_forms.py')
-rw-r--r--src/tabs/data_forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs/data_forms.py b/src/tabs/data_forms.py
index ecd28e33..44c29e6c 100644
--- a/src/tabs/data_forms.py
+++ b/src/tabs/data_forms.py
@@ -44,13 +44,13 @@ class DataFormsTab(Tab):
self.update_commands()
def on_cancel(self):
- self._on_cancel(self._form)
+ self._on_cancel(self._form, **self._kwargs)
return True
def on_send(self):
self._form.reply()
self.form_win.reply()
- self._on_send(self._form)
+ self._on_send(self._form, **self._kwargs)
return True
def on_input(self, key, raw=False):