diff options
Diffstat (limited to 'modules/controlcenter/network/NetworkingPane.qml')
| -rw-r--r-- | modules/controlcenter/network/NetworkingPane.qml | 12 |
1 files changed, 12 insertions, 0 deletions
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 |