summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-19 21:22:54 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-19 21:22:54 +0200
commitc6ec4b8ba4f7f24e247bec6916e14c98972259c7 (patch)
treeb0d16b25590af62db56f58096240465ec545cd1b
parentFix login and registration page registration (diff)
downloadnheko-c6ec4b8ba4f7f24e247bec6916e14c98972259c7.tar.xz
Fix screenshare selection
-rw-r--r--resources/qml/voip/ScreenShare.qml2
-rw-r--r--src/voip/CallManager.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/voip/ScreenShare.qml b/resources/qml/voip/ScreenShare.qml

index 2337f6d0..7f8665bc 100644 --- a/resources/qml/voip/ScreenShare.qml +++ b/resources/qml/voip/ScreenShare.qml
@@ -47,7 +47,7 @@ Popup { Layout.fillWidth: true model: CallManager.screenShareTypeList() - onCurrentIndexChanged: CallManager.setVoip(currentIndex); + onCurrentIndexChanged: CallManager.setScreenShareType(currentIndex); } } diff --git a/src/voip/CallManager.h b/src/voip/CallManager.h
index e84b79c9..c0fd0831 100644 --- a/src/voip/CallManager.h +++ b/src/voip/CallManager.h
@@ -27,7 +27,7 @@ struct TurnServer; class QUrl; -class CallManager final : public QObject +class CallManager : public QObject { Q_OBJECT