summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tabs.py2
-rw-r--r--src/windows.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/tabs.py b/src/tabs.py
index bb9db89e..9de41fac 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -905,7 +905,7 @@ class ConversationTab(ChatTab):
return
self.text_win.refresh(self._room)
self.upper_bar.refresh(self.get_name(), roster.get_contact_by_jid(self.get_name()))
- self.info_header.refresh(self.get_name(), roster.get_contact_by_jid(self.get_name()), self._room)
+ self.info_header.refresh(self.get_name(), roster.get_contact_by_jid(self.get_name()), self._room, self.text_win)
self.info_win.refresh(informations)
self.tab_win.refresh(tabs, tabs[0])
self.input.refresh()
diff --git a/src/windows.py b/src/windows.py
index 7c87c59b..b137406d 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -209,12 +209,12 @@ class PrivateInfoWin(InfoWin):
def resize(self, height, width, y, x, stdscr):
self._resize(height, width, y, x, stdscr)
- def refresh(self, room):
+ def refresh(self, room, window):
with g_lock:
self._win.erase()
self.write_room_name(room)
- self.print_scroll_position(room)
+ self.print_scroll_position(window)
self.finish_line(theme.COLOR_INFORMATION_BAR)
self._refresh()
@@ -246,7 +246,7 @@ class ConversationInfoWin(InfoWin):
def resize(self, height, width, y, x, stdscr):
self._resize(height, width, y, x, stdscr)
- def refresh(self, jid, contact, text_buffer):
+ def refresh(self, jid, contact, text_buffer, window):
# contact can be None, if we receive a message
# from someone not in our roster. In this case, we display
# only the maximum information from the message we can get.
@@ -268,7 +268,7 @@ class ConversationInfoWin(InfoWin):
self.write_contact_jid(jid)
self.write_contact_informations(contact)
self.write_resource_information(resource)
- self.print_scroll_position(text_buffer)
+ self.print_scroll_position(window)
self.finish_line(theme.COLOR_INFORMATION_BAR)
self._refresh()