diff options
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index 37c5e888..0d1c5751 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1736,6 +1736,12 @@ class MucListTab(Tab): def get_color_state(self): return self._color_state + def on_scroll_up(self): + self.listview.scroll_up() + + def on_scroll_down(self): + self.listview.scroll_down() + class SimpleTextTab(Tab): """ A very simple tab, with just a text displaying some |