mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 10:29:24 +00:00
Add chat redirection on chat rooms + fix participant devices display
This commit is contained in:
parent
160706c2c7
commit
a5fa14461b
2 changed files with 7 additions and 1 deletions
|
|
@ -218,6 +218,12 @@ ColumnLayout {
|
|||
|
||||
onClicked: CallsListModel.launchAudioCall(conversation.peerAddress)
|
||||
}
|
||||
ActionButton {
|
||||
icon: 'chat'
|
||||
visible: SettingsModel.chatEnabled && SettingsModel.getShowStartChatButton() && !conversation.chatRoomModel.groupEnabled && conversation.securityLevel != 1
|
||||
|
||||
onClicked: CallsListModel.launchChat(conversation.peerAddress, 0)
|
||||
}
|
||||
|
||||
ActionButton {
|
||||
icon: 'group_chat'
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ DialogPlus {
|
|||
property int securityLevel : modelData.securityLevel
|
||||
property string addressToCall : modelData.sipAddress
|
||||
|
||||
width:parent.width
|
||||
width: parent ? parent.width : undefined
|
||||
spacing: 0
|
||||
RowLayout {
|
||||
id: item
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue