Skip to content
Snippets Groups Projects
Verified Commit 63a2d4b4 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix crash during calls

parent 89df4aa1
No related branches found
No related tags found
No related merge requests found
Pipeline #5268 passed
......@@ -134,8 +134,14 @@ Rectangle {
callTimer.startTime: Math.floor((new Date()).getTime() / 1000)
}
// HACK(Nico): Somehow this causes a crash when not using the custom parser for that property change...
//PropertyChanges {
// stackLayout.currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0
//}
PropertyChanges {
stackLayout.currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0
target: stackLayout
currentIndex: CallManager.callType != Voip.VOICE ? 1 : 0 // qmllint disable Quick.property-changes-parsed
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment