aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome/qml/welcomepage/CustomScrollView.qml
blob: ccefc13182dee2be4789458500517c3e26417f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

import QtQuick.Templates 2.15 as Controls

Controls.ScrollView {
    id: control

    Controls.ScrollBar.vertical: CustomScrollBar {
           parent: control
           x: control.mirrored ? 0 : control.width - width
           y: control.topPadding
           height: control.availableHeight
       }
}