From 342d79e21c6ba740a14c868433c602be4552bf65 Mon Sep 17 00:00:00 2001 From: Pascal Precht <445106+0x-r4bbit@users.noreply.github.com> Date: Tue, 17 Jan 2023 12:41:53 +0100 Subject: [PATCH] fix(BackupSeedModal): always show vertical scrollbar This is to ensure users don't get confused with the fact there's more checkboxes to check in the modal until they can continue. Depending on viewport size, checkboxes can be hidden but it's not obvious that the area is scrollable. See #8651 Closes #8651 --- .../AppLayouts/Profile/popups/backupseed/Acknowledgements.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/app/AppLayouts/Profile/popups/backupseed/Acknowledgements.qml b/ui/app/AppLayouts/Profile/popups/backupseed/Acknowledgements.qml index 8f163f812f..8d108a7681 100644 --- a/ui/app/AppLayouts/Profile/popups/backupseed/Acknowledgements.qml +++ b/ui/app/AppLayouts/Profile/popups/backupseed/Acknowledgements.qml @@ -1,4 +1,5 @@ import QtQuick 2.12 +import QtQuick.Controls 2.14 import QtQuick.Layouts 1.12 import shared.panels 1.0 @@ -33,6 +34,8 @@ ColumnLayout { anchors.margins: -parent.anchors.margins anchors.bottomMargin: -parent.anchors.bottomMargin + ScrollBar.vertical.policy: ScrollBar.AlwaysOn + clip: false ColumnLayout {