summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-01 12:17:17 +0100
committermathieui <mathieui@mathieui.net>2011-11-01 12:17:17 +0100
commitecf3685db6234e9dc53a41d4635d092a48de37a4 (patch)
treef26fdd6568585d112eaf661f3591c558f8d4d990 /src
parent611acbeb2aeabaac0f5d7a182566c7f57160ba4e (diff)
downloadpoezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.gz
poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.bz2
poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.tar.xz
poezio-ecf3685db6234e9dc53a41d4635d092a48de37a4.zip
Fixed #2281
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py4
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())