fix scrolling to iter in groupchat when we receive a pm. Fixes #8635

This commit is contained in:
Yann Leboulanger 2017-08-21 21:59:47 +02:00
parent 3c693a7a22
commit d070d141bb
1 changed files with 1 additions and 1 deletions

View File

@ -1142,7 +1142,7 @@ class GroupchatControl(ChatControlBase):
else:
self._start_private_message(nick)
# Scroll to line
path_ = path
path_ = path.copy()
path_.up()
self.list_treeview.expand_row(path_, False)
self.list_treeview.scroll_to_cell(path)