Skip to content
Snippets Groups Projects
Commit 731d2a51 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

callview: avoid resetting the CallOverlayModel multiple times

This is a temporary fix that can be replaced by more declarative
code in the future.

Change-Id: I22ffc2b0bc844bc0a17fefdedab63b26b477179a
parent 571ec9a2
No related branches found
No related tags found
No related merge requests found
...@@ -412,14 +412,14 @@ Control { ...@@ -412,14 +412,14 @@ Control {
Connections { Connections {
target: callOverlay target: callOverlay
function onIsAudioOnlyChanged() { reset() } function onIsAudioOnlyChanged() { Qt.callLater(reset) }
function onIsSIPChanged() { reset() } function onIsSIPChanged() { Qt.callLater(reset) }
function onIsModeratorChanged() { reset() } function onIsModeratorChanged() { Qt.callLater(reset) }
function onIsAudioMutedChanged() { reset() } function onIsAudioMutedChanged() { Qt.callLater(reset) }
function onIsVideoMutedChanged() { reset() } function onIsVideoMutedChanged() { Qt.callLater(reset) }
function onIsRecordingChanged() { reset() } function onIsRecordingChanged() { Qt.callLater(reset) }
function onLocalHandRaisedChanged() { reset() } function onLocalHandRaisedChanged() { Qt.callLater(reset) }
function onIsConferenceChanged() { reset() } function onIsConferenceChanged() { Qt.callLater(reset) }
} }
Connections { Connections {
target: CurrentAccount target: CurrentAccount
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment