fix scrolling to iter in groupchat when we receive a pm. Fixes #8635
This commit is contained in:
parent
3c693a7a22
commit
d070d141bb
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue