From 71f3baae6b0a264813a9d460f1cc85f0d2cd8c28 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Thu, 21 Nov 2013 15:01:57 +0100 Subject: [PATCH] QmlProfiler: Remover "rubber" behavior for horizontal Flickable. By overflicking you could reduce the selected range and implicitly zoom in. That seemed wrong. The rubber effect doesn't serve a real purpose on desktop applications anyway. Task-number: QTCREATORBUG-10864 Change-Id: Id4d6107e23c184621c5fcce21bf042e6ed4bd8e6 Reviewed-by: Kai Koehne --- src/plugins/qmlprofiler/qml/MainView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/qmlprofiler/qml/MainView.qml b/src/plugins/qmlprofiler/qml/MainView.qml index f067422819..9b2864c19b 100644 --- a/src/plugins/qmlprofiler/qml/MainView.qml +++ b/src/plugins/qmlprofiler/qml/MainView.qml @@ -330,6 +330,7 @@ Rectangle { contentWidth: 0 height: labels.height + labelsTail.height flickableDirection: Flickable.HorizontalFlick + boundsBehavior: Flickable.StopAtBounds onContentXChanged: view.updateZoomControl() clip:true -- GitLab