diff --git a/src/plugins/qmlprofiler/qml/MainView.qml b/src/plugins/qmlprofiler/qml/MainView.qml index 01df8a5b4d6..a87cf6640c0 100644 --- a/src/plugins/qmlprofiler/qml/MainView.qml +++ b/src/plugins/qmlprofiler/qml/MainView.qml @@ -307,6 +307,11 @@ Rectangle { height: root.height clip: true contentHeight: labels.height + boundsBehavior: Flickable.StopAtBounds + + // ScrollView will try to deinteractivate it. We don't want that + // as the horizontal flickable is interactive, too. + onInteractiveChanged: interactive = true // ***** child items TimeMarks { @@ -501,6 +506,11 @@ Rectangle { } } + ScrollView { + contentItem: vertflick + anchors.fill: parent + } + SelectionRangeDetails { id: selectionRangeDetails visible: root.selectionRangeMode