From cbe0ff2c1d6eb86520fdba05183f33cd4f262bcd Mon Sep 17 00:00:00 2001 From: fiaxh Date: Thu, 18 Apr 2019 22:38:16 +0200 Subject: Don't move opened conversation to the top of the list, scroll along with selected conversation fixes #544 --- main/src/ui/occupant_menu/view.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/src/ui/occupant_menu') diff --git a/main/src/ui/occupant_menu/view.vala b/main/src/ui/occupant_menu/view.vala index 0d11a310..119d7cfe 100644 --- a/main/src/ui/occupant_menu/view.vala +++ b/main/src/ui/occupant_menu/view.vala @@ -106,7 +106,7 @@ public class View : Popover { if (list_row == null) return; Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(list_row.jid, list_row.account, Conversation.Type.GROUPCHAT_PM); - stream_interactor.get_module(ConversationManager.IDENTITY).start_conversation(conversation, true); + stream_interactor.get_module(ConversationManager.IDENTITY).start_conversation(conversation); } private void kick_button_clicked() { -- cgit v1.2.3-54-g00ecf