1 parent c9a7d75 commit af5a6deCopy full SHA for af5a6de
2 files changed
src/plugins/visualeditor/qml/PianoRollView.qml
@@ -432,9 +432,10 @@ Item {
432
color: Theme.foregroundPrimaryColor
433
font: Theme.font
434
}
435
- Item {
+ StackLayout {
436
Layout.fillWidth: true
437
Layout.fillHeight: true
438
+ data: [layout.item?.toolBar ?? null]
439
440
ToolButton {
441
implicitWidth: 20
src/plugins/visualeditor/qml/additionaltracks/ParameterTrack.qml
@@ -23,6 +23,10 @@ QtObject {
23
readonly property Component parameterTrackComponent: Item {
24
id: control
25
required property QtObject contextObject
26
+ readonly property Item toolBar: Rectangle {
27
+ // TODO
28
+ color: "red"
29
+ }
30
implicitHeight: 40
31
32
0 commit comments