3094e47a99
Improve trackpad precision by making the amount of scroll, flickVelocity and flickDeceleration proportional
12 lines
253 B
QML
12 lines
253 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Flickable {
|
|
interactive: contentWidth > width || contentHeight > height
|
|
ScrollBar.vertical: ScrollBar {
|
|
visible: parent.interactive
|
|
}
|
|
}
|