Updating Scrollbar Theme
the build was successful Details

This commit is contained in:
Sarah Jamie Lewis 2020-04-27 14:25:26 -07:00
parent 4bb5ef6a1c
commit 65de146c34
2 changed files with 12 additions and 1 deletions

View File

@ -38,6 +38,7 @@ ColumnLayout { // peerSettingsPane
id: tehcol
width: root.width
leftPadding: 10
padding:10
spacing: 5
Widgets.EllipsisLabel {

View File

@ -3,6 +3,7 @@ import QtQuick 2.7
import QtQuick.Controls 2.4
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
import "../theme"
ColumnLayout {
id: root
@ -38,8 +39,17 @@ ColumnLayout {
ScrollBar.vertical: ScrollBar {
policy: ScrollBar.AlwaysOff
policy: ScrollBar.AsNeeded
background: Rectangle {
implicitWidth: 6
color: Theme.backgroundMainColor
}
contentItem: Rectangle {
implicitWidth: 6
implicitHeight:1
color: Theme.backgroundPaneColor
}
}
ColumnLayout {