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
Branches
Tags
No related merge requests found
......@@ -412,14 +412,14 @@ Control {
Connections {
target: callOverlay
function onIsAudioOnlyChanged() { reset() }
function onIsSIPChanged() { reset() }
function onIsModeratorChanged() { reset() }
function onIsAudioMutedChanged() { reset() }
function onIsVideoMutedChanged() { reset() }
function onIsRecordingChanged() { reset() }
function onLocalHandRaisedChanged() { reset() }
function onIsConferenceChanged() { reset() }
function onIsAudioOnlyChanged() { Qt.callLater(reset) }
function onIsSIPChanged() { Qt.callLater(reset) }
function onIsModeratorChanged() { Qt.callLater(reset) }
function onIsAudioMutedChanged() { Qt.callLater(reset) }
function onIsVideoMutedChanged() { Qt.callLater(reset) }
function onIsRecordingChanged() { Qt.callLater(reset) }
function onLocalHandRaisedChanged() { Qt.callLater(reset) }
function onIsConferenceChanged() { Qt.callLater(reset) }
}
Connections {
target: CurrentAccount
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment