From ecf3685db6234e9dc53a41d4635d092a48de37a4 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 1 Nov 2011 12:17:17 +0100 Subject: Fixed #2281 --- src/tabs.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/tabs.py') diff --git a/src/tabs.py b/src/tabs.py index 3dd7aaea..bc85a618 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1643,6 +1643,8 @@ class RosterInfoTab(Tab): return False def move_cursor_down(self): + if isinstance(self.input, windows.CommandInput): + return self.roster_win.move_cursor_down() self.roster_win.refresh(roster) self.contact_info_win.refresh(self.roster_win.get_selected_row()) @@ -1650,6 +1652,8 @@ class RosterInfoTab(Tab): self.core.doupdate() def move_cursor_up(self): + if isinstance(self.input, windows.CommandInput): + return self.roster_win.move_cursor_up() self.roster_win.refresh(roster) self.contact_info_win.refresh(self.roster_win.get_selected_row()) -- cgit v1.2.3