summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/controlcenter/ethernet/EthernetDetails.qml6
-rw-r--r--modules/controlcenter/network/NetworkingPane.qml12
-rw-r--r--modules/controlcenter/network/WirelessDetails.qml6
3 files changed, 24 insertions, 0 deletions
diff --git a/modules/controlcenter/ethernet/EthernetDetails.qml b/modules/controlcenter/ethernet/EthernetDetails.qml
index 6a01a8b..f715970 100644
--- a/modules/controlcenter/ethernet/EthernetDetails.qml
+++ b/modules/controlcenter/ethernet/EthernetDetails.qml
@@ -31,12 +31,18 @@ Item {
}
StyledFlickable {
+ id: flickable
+
anchors.fill: parent
flickableDirection: Flickable.VerticalFlick
clip: true
contentHeight: layout.height
+ StyledScrollBar.vertical: StyledScrollBar {
+ flickable: flickable
+ }
+
ColumnLayout {
id: layout
diff --git a/modules/controlcenter/network/NetworkingPane.qml b/modules/controlcenter/network/NetworkingPane.qml
index 2faa40a..5d93ff9 100644
--- a/modules/controlcenter/network/NetworkingPane.qml
+++ b/modules/controlcenter/network/NetworkingPane.qml
@@ -30,6 +30,8 @@ RowLayout {
// Left pane - networking list with collapsible sections
StyledFlickable {
+ id: leftFlickable
+
anchors.fill: parent
anchors.margins: Appearance.padding.large + Appearance.padding.normal
anchors.leftMargin: Appearance.padding.large
@@ -38,6 +40,10 @@ RowLayout {
contentHeight: leftContent.height
clip: true
+ StyledScrollBar.vertical: StyledScrollBar {
+ flickable: leftFlickable
+ }
+
ColumnLayout {
id: leftContent
@@ -472,10 +478,16 @@ RowLayout {
id: settings
StyledFlickable {
+ id: settingsFlickable
+
flickableDirection: Flickable.VerticalFlick
contentHeight: settingsInner.height
clip: true
+ StyledScrollBar.vertical: StyledScrollBar {
+ flickable: settingsFlickable
+ }
+
NetworkSettings {
id: settingsInner
diff --git a/modules/controlcenter/network/WirelessDetails.qml b/modules/controlcenter/network/WirelessDetails.qml
index f41451a..5b4f541 100644
--- a/modules/controlcenter/network/WirelessDetails.qml
+++ b/modules/controlcenter/network/WirelessDetails.qml
@@ -99,12 +99,18 @@ Item {
}
StyledFlickable {
+ id: flickable
+
anchors.fill: parent
flickableDirection: Flickable.VerticalFlick
clip: true
contentHeight: layout.height
+ StyledScrollBar.vertical: StyledScrollBar {
+ flickable: flickable
+ }
+
ColumnLayout {
id: layout