diff options
author | fiaxh <git@lightrise.org> | 2019-04-18 22:38:16 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-04-24 23:44:00 +0200 |
commit | cbe0ff2c1d6eb86520fdba05183f33cd4f262bcd (patch) | |
tree | d127686d9b996f4bd4f03e404291cd5cec3bbe14 /main/src/ui/occupant_menu | |
parent | a960740c3e88a16d5c7e10ff8594475d95894721 (diff) | |
download | dino-cbe0ff2c1d6eb86520fdba05183f33cd4f262bcd.tar.gz dino-cbe0ff2c1d6eb86520fdba05183f33cd4f262bcd.zip |
Don't move opened conversation to the top of the list, scroll along with selected conversation
fixes #544
Diffstat (limited to 'main/src/ui/occupant_menu')
-rw-r--r-- | main/src/ui/occupant_menu/view.vala | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |