summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tabs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 06e89f44..d41bf9d3 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -2369,7 +2369,9 @@ class MucListTab(Tab):
return True
def execute_slash_command(self, txt):
- self.execute_command(txt)
+ if txt.startswith('/'):
+ self.input.key_enter()
+ self.execute_command(txt)
return self.reset_help_message()
def get_name(self):