Adjust scrollbar bottom padding

pull/11/head
cutefishd 5 years ago
parent d9f23e9537
commit 49bbae1c20

@ -26,7 +26,6 @@ ItemPage {
Scrollable {
anchors.fill: parent
anchors.bottomMargin: Meui.Units.largeSpacing
contentHeight: layout.implicitHeight
ColumnLayout {

@ -41,7 +41,6 @@ ItemPage {
Scrollable {
anchors.fill: parent
anchors.bottomMargin: Meui.Units.smallSpacing
contentHeight: layout.implicitHeight
ColumnLayout {

@ -14,7 +14,6 @@ ItemPage {
GridView {
anchors.fill: parent
anchors.bottomMargin: Meui.Units.largeSpacing
leftMargin: Meui.Units.smallSpacing
cellWidth: 320
@ -25,7 +24,9 @@ ItemPage {
currentIndex: -1
ScrollBar.vertical: ScrollBar {}
ScrollBar.vertical: ScrollBar {
bottomPadding: Meui.Theme.smallRadius
}
delegate: Item {
id: item

@ -38,7 +38,6 @@ ItemPage {
Scrollable {
anchors.fill: parent
anchors.bottomMargin: Meui.Units.largeSpacing
contentHeight: layout.implicitHeight
visible: battery.available

@ -14,7 +14,6 @@ ItemPage {
ColumnLayout {
anchors.fill: parent
anchors.topMargin: Meui.Units.smallSpacing
anchors.bottomMargin: Meui.Units.largeSpacing
ListView {
id: listView
@ -32,7 +31,9 @@ ItemPage {
currentIndex: language.currentLanguage
ScrollBar.vertical: ScrollBar {}
ScrollBar.vertical: ScrollBar {
bottomPadding: Meui.Theme.smallRadius
}
highlightFollowsCurrentItem: true
highlightMoveDuration: 0

@ -15,10 +15,6 @@ ItemPage {
NM.Networking {
id: networking
onWirelessEnabledChanged: {
wirelessSwitch.checked = wirelessEnabled
}
}
NM.NetworkModel {
@ -27,7 +23,6 @@ ItemPage {
Scrollable {
anchors.fill: parent
anchors.bottomMargin: Meui.Units.largeSpacing
contentHeight: mainLayout.implicitHeight
ColumnLayout {

@ -13,5 +13,7 @@ Flickable {
contentWidth: width - (leftMargin + rightMargin)
ScrollBar.vertical: ScrollBar {}
ScrollBar.vertical: ScrollBar {
bottomPadding: Meui.Theme.smallRadius
}
}

Loading…
Cancel
Save