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
This commit is contained in:
Pascal Precht 2023-01-17 12:41:53 +01:00 committed by r4bbit
parent bf7148efd6
commit 342d79e21c
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import QtQuick 2.12 import QtQuick 2.12
import QtQuick.Controls 2.14
import QtQuick.Layouts 1.12 import QtQuick.Layouts 1.12
import shared.panels 1.0 import shared.panels 1.0
@ -33,6 +34,8 @@ ColumnLayout {
anchors.margins: -parent.anchors.margins anchors.margins: -parent.anchors.margins
anchors.bottomMargin: -parent.anchors.bottomMargin anchors.bottomMargin: -parent.anchors.bottomMargin
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
clip: false clip: false
ColumnLayout { ColumnLayout {