From ca51d44505fc350dd8cbf113718e39e9751059fd Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Tue, 28 Jan 2025 14:44:06 +0100 Subject: [PATCH] try to fix #LINQT-1605 cannot scroll in advanced settings --- .../view/Page/Layout/Settings/AbstractSettingsLayout.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml b/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml index f84171bc..4761902d 100644 --- a/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml +++ b/Linphone/view/Page/Layout/Settings/AbstractSettingsLayout.qml @@ -105,8 +105,8 @@ Rectangle { leftPadding: 45 * DefaultStyle.dp rightPadding: 45 * DefaultStyle.dp Control.ScrollBar.vertical: ScrollBar { - active: scrollView.contentHeight > scrollView.height - visible: scrollView.contentHeight > scrollView.height + active: scrollViewContent.implicitHeight > scrollView.height + visible: scrollViewContent.implicitHeight > scrollView.height interactive: true policy: Control.ScrollBar.AsNeeded anchors.top: parent.top @@ -118,6 +118,7 @@ Rectangle { active: false } ColumnLayout { + id: scrollViewContent width: parent.width spacing: 10 * DefaultStyle.dp Repeater {