[ui] Add the notion of Node Documentation

This commit is contained in:
Fabien Castan 2020-03-26 10:54:00 +01:00
parent 2ebcf19382
commit 0e606eef4e
4 changed files with 55 additions and 0 deletions

View file

@ -148,6 +148,12 @@ Panel {
chunkCurrentIndex: m.chunkCurrentIndex
onChangeCurrentChunk: { m.chunkCurrentIndex = chunkIndex }
}
NodeDocumentation {
id: nodeDocumentation
Layout.fillWidth: true
node: root.node
}
}
}
}
@ -185,6 +191,12 @@ Panel {
leftPadding: 8
rightPadding: leftPadding
}
TabButton {
text: "Documentation"
width: implicitWidth
leftPadding: 8
rightPadding: leftPadding
}
}
}
}