From 7c06f9c362adf594ac60394ecc7505ec33f697d5 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Wed, 26 Jan 2022 20:54:33 +0100 Subject: [PATCH] fix(@desktop/chat): send message is not working from context menu fixes #4531 --- ui/app/AppLayouts/Chat/views/ChatContentView.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/app/AppLayouts/Chat/views/ChatContentView.qml b/ui/app/AppLayouts/Chat/views/ChatContentView.qml index 5266988a3b..f466fa984c 100644 --- a/ui/app/AppLayouts/Chat/views/ChatContentView.qml +++ b/ui/app/AppLayouts/Chat/views/ChatContentView.qml @@ -345,6 +345,11 @@ ColumnLayout { } onEditClicked: messageStore.setEditModeOn(messageId) + + onCreateOneToOneChat: { + Global.changeAppSectionBySectionType(Constants.appSection.chat) + root.rootStore.chatCommunitySectionModule.createOneToOneChat(chatId, ensName) + } } ColumnLayout {