diff --git a/ui/imports/shared/panels/ProfileBioSocialsPanel.qml b/ui/imports/shared/panels/ProfileBioSocialsPanel.qml index 9a4e8b95a5..36c410cfc7 100644 --- a/ui/imports/shared/panels/ProfileBioSocialsPanel.qml +++ b/ui/imports/shared/panels/ProfileBioSocialsPanel.qml @@ -89,13 +89,20 @@ Control { id: scrollView visible: root.bio padding: 0 - rightPadding: scrollBar.visible ? 16 : 0 + + Binding on rightPadding { + delayed: true + value: scrollBar.visible ? 16 : 0 + } + Layout.maximumHeight: 108 Layout.fillWidth: true contentHeight: bioText.height ScrollBar.vertical: StatusScrollBar { id: scrollBar - policy: bioText.height > scrollView.availableHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff + + policy: bioText.height > scrollView.availableHeight + ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff } StatusBaseText {