Skip to content
Snippets Groups Projects
Commit 2a4aebed authored by Ulf Hermann's avatar Ulf Hermann
Browse files

QmlProfiler: Use anchors to determine the size of the timebar background


For some reason, when the timeline width is 0, the background width can
get negative, if using bindings; it works fine when using anchors.

Change-Id: I5eb76f83b9c41c1a71a135082770079cedc7f16c
Reviewed-by: default avatarKai Koehne <kai.koehne@digia.com>
parent 41efabf5
No related branches found
No related tags found
No related merge requests found
......@@ -303,8 +303,7 @@ Rectangle {
Flickable {
id: vertflick
flickableDirection: Flickable.VerticalFlick
width: parent.width
height: root.height
anchors.fill: parent
clip: true
contentHeight: labels.height
boundsBehavior: Flickable.StopAtBounds
......@@ -318,8 +317,8 @@ Rectangle {
id: backgroundMarks
y: vertflick.contentY
height: vertflick.height
width: flick.width
anchors.left: flick.left
anchors.right: parent.right
anchors.left: labels.right
}
Flickable {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment