21fbe7a96b
Lets the user know that there's content to scroll.
16 lines
340 B
QML
16 lines
340 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
ScrollView {
|
|
id: scrollView
|
|
|
|
ScrollBar.vertical: HScrollBar {
|
|
parent: scrollView
|
|
x: scrollView.mirrored ? 0 : scrollView.width - width
|
|
y: scrollView.topPadding
|
|
height: scrollView.availableHeight
|
|
}
|
|
}
|