summaryrefslogtreecommitdiff
path: root/src/tab.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.py')
-rw-r--r--src/tab.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tab.py b/src/tab.py
index 85a6de75..8ecbb637 100644
--- a/src/tab.py
+++ b/src/tab.py
@@ -388,7 +388,8 @@ class PrivateTab(ChatTab):
if key in self.key_func:
self.key_func[key]()
return False
- return self.input.do_command(key)
+ self.input.do_command(key)
+ return False
def on_enter(self):
"""
@@ -637,7 +638,7 @@ class ConversationTab(ChatTab):
self.key_func[key]()
return False
self.input.do_command(key)
- return True
+ return False
def on_enter(self):
"""