From 85c3c9f6b4c5516b31817b6461de1f0b5ea58b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20J=C3=B6rgensen?= Date: Fri, 2 Jan 2026 15:06:21 +0100 Subject: [PATCH] Switch from ScrollView to Flickable in parameters --- .../view/Page/Layout/Settings/AbstractSettingsLayout.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml b/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml index bf995d01f..8f8f8c852 100644 --- a/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml +++ b/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml @@ -100,17 +100,13 @@ Rectangle { } } } - Control.ScrollView { + Flickable { id: scrollView anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom anchors.top: header.bottom anchors.topMargin: Utils.getSizeWithScreenRatio(16) - // Workaround while the CI is made with Qt6.5.3 - // When updated to 6.8, remove this Item and - // change the ScrollView with a Flickable - Item{anchors.fill: parent} contentHeight: contentListView.contentHeight Control.ScrollBar.vertical: ScrollBar { active: contentListView.contentHeight > scrollView.height