From 773b1053b9b607a45c0c02ddf6af5a74ecf12f2c Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Tue, 22 Nov 2022 16:30:52 +0100 Subject: [PATCH] Display participant address on clicking on one (Conference creation) --- linphone-app/ui/views/App/Dialog/NewConference.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/linphone-app/ui/views/App/Dialog/NewConference.qml b/linphone-app/ui/views/App/Dialog/NewConference.qml index c84cced70..9048fac9d 100644 --- a/linphone-app/ui/views/App/Dialog/NewConference.qml +++ b/linphone-app/ui/views/App/Dialog/NewConference.qml @@ -557,7 +557,6 @@ DialogPlus { function removeParticipant(entry){ smartSearchBar.removeAddressToIgnore(entry.sipAddress) selectedParticipants.removeModel(entry) - ++lastContacts.reloadCount } @@ -579,7 +578,7 @@ DialogPlus { id:selectedParticipants chatRoomModel:null } - onEntryClicked: actions[0].handler(entry) + onEntryClicked: participantView.showSubtitle = !participantView.showSubtitle } } }