Skip to content
Snippets Groups Projects
Commit 9fdb468f authored by luyikei's avatar luyikei
Browse files

Track.qml: Put trackText outside of the Row of buttons

parent 9f9b0d4f
No related branches found
No related tags found
No related merge requests found
......@@ -376,17 +376,19 @@ Item {
color: "#111111"
}
Row {
spacing: 4
Text {
id: trackText
anchors.verticalCenter: parent.verticalCenter
x: 20
x: 10
text: type + " " + ( trackId + 1 )
color: "white"
font.pointSize: trackHeight / 3
}
Text {
id: trackText
text: type + " " + ( trackId + 1 )
color: "white"
font.pointSize: trackHeight / 3
}
Row {
anchors.verticalCenter: parent.verticalCenter
x: parent.width / 2
spacing: 4
PropertyButton {
id: fxButton
......
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