Added spinner on each participant in conference until call is answered

This commit is contained in:
Sylvain Berfini 2017-06-08 14:26:04 +02:00
parent 786b2cb752
commit b080b712dc

View file

@ -159,6 +159,15 @@ Rectangle {
}
username: contactDescription.username
BusyIndicator {
width: parent.width / 2
height: parent.height / 2
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
visible: $call && $call.status === CallModel.CallStatusOutgoing
}
}
}