From 60224bb76a08d5332e1d0bca810cf9682d45aa89 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 27 Apr 2014 02:17:00 +0200 Subject: Fix weird behavior while using the input in the muclisttab --- src/tabs/muclisttab.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/tabs/muclisttab.py') diff --git a/src/tabs/muclisttab.py b/src/tabs/muclisttab.py index b82f4a23..6506d4cf 100644 --- a/src/tabs/muclisttab.py +++ b/src/tabs/muclisttab.py @@ -178,8 +178,10 @@ class MucListTab(Tab): def on_input(self, key, raw): res = self.input.do_command(key, raw=raw) - if res: + if res and not isinstance(self.input, windows.Input): return True + elif res: + return False if not raw and key in self.key_func: return self.key_func[key]() -- cgit v1.2.3