diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-01 12:17:17 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-01 12:17:17 +0100 |
commit | ecf3685db6234e9dc53a41d4635d092a48de37a4 (patch) | |
tree | f26fdd6568585d112eaf661f3591c558f8d4d990 | |
parent | 611acbeb2aeabaac0f5d7a182566c7f57160ba4e (diff) | |
download | poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.gz poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.bz2 poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.xz poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.zip |
Fixed #2281
-rw-r--r-- | src/tabs.py | 4 |
1 files changed, 4 insertions, 0 deletions
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()) |