diff options
author | trilene <trilene@runbox.com> | 2021-02-21 16:30:10 -0500 |
---|---|---|
committer | trilene <trilene@runbox.com> | 2021-02-21 16:30:10 -0500 |
commit | 70c77cdc44698104c11c222dc630bbcc26a27f3e (patch) | |
tree | dd4df1a85c7ae0618b16d87803637810ee0dcb0d /resources/qml/TimelineView.qml | |
parent | Refine X11 test (diff) | |
download | nheko-70c77cdc44698104c11c222dc630bbcc26a27f3e.tar.xz |
Display screen sharing content locally
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 0cd129da..07145c7a 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -249,7 +249,7 @@ Page { } Loader { - source: CallManager.isOnCall && CallManager.haveVideo ? "voip/VideoCall.qml" : "" + source: CallManager.isOnCall && CallManager.callType != CallType.VOICE ? "voip/VideoCall.qml" : "" onLoaded: TimelineManager.setVideoCallItem() } |