summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/tabs.py b/src/tabs.py
index da6bceaf..68a93667 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -2965,8 +2965,8 @@ class MucListTab(Tab):
self.listview = windows.ListWin(columns)
self.default_help_message = windows.HelpText("ā€œjā€: join room.")
self.input = self.default_help_message
- self.key_func["KEY_DOWN"] = self.listview.move_cursor_down
- self.key_func["KEY_UP"] = self.listview.move_cursor_up
+ self.key_func["KEY_DOWN"] = self.move_cursor_down
+ self.key_func["KEY_UP"] = self.move_cursor_up
self.key_func['^I'] = self.completion
self.key_func["/"] = self.on_slash
self.key_func['j'] = self.join_selected
@@ -3106,6 +3106,16 @@ class MucListTab(Tab):
def on_scroll_down(self):
return self.listview.scroll_down()
+ def move_cursor_up(self):
+ self.listview.move_cursor_up()
+ self.listview.refresh()
+ self.core.doupdate()
+
+ def move_cursor_down(self):
+ self.listview.move_cursor_down()
+ self.listview.refresh()
+ self.core.doupdate()
+
class XMLTab(Tab):
def __init__(self):