mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 10:29:24 +00:00
14 lines
332 B
QML
14 lines
332 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
import 'qrc:/ui/components/scrollBar'
|
|
|
|
// ===================================================================
|
|
|
|
ListView {
|
|
ScrollBar.vertical: ForceScrollBar { }
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
clip: true
|
|
highlightRangeMode: ListView.ApplyRange
|
|
spacing: 0
|
|
}
|