From 9df3bc1eb8ddd8d393b1850066dd7369c10c0f66 Mon Sep 17 00:00:00 2001 From: Integral Date: Thu, 9 Jan 2025 02:09:20 +0800 Subject: [PATCH] fix: add more options for screen sharing frame rate Currently, the maximum frame rate of screen sharing is only 25fps. Add more options to increase the maximum frame rate. This PR fixes issue #1851. --- resources/qml/voip/ScreenShare.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/voip/ScreenShare.qml b/resources/qml/voip/ScreenShare.qml index 3c3b43ce..115a8d32 100644 --- a/resources/qml/voip/ScreenShare.qml +++ b/resources/qml/voip/ScreenShare.qml @@ -97,7 +97,7 @@ Popup { id: frameRateCombo Layout.fillWidth: true - model: ["25", "20", "15", "10", "5", "2", "1"] + model: ["120", "90", "60", "50", "48", "30", "25", "20", "15", "10", "5", "2", "1"] } }