mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 15:56:15 +02:00
39 lines
No EOL
846 B
QML
39 lines
No EOL
846 B
QML
//
|
|
// EngineInspector.qml
|
|
//
|
|
// Created by Sam Gateau on 06/07/2018
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.5
|
|
import QtQuick.Layouts 1.3
|
|
|
|
|
|
import "../lib/jet/qml" as Jet
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
id: root;
|
|
|
|
property var rootConfig: Render.getConfig("")
|
|
|
|
ScrollView {
|
|
id: scrollView
|
|
anchors.fill: parent
|
|
contentWidth: parent.width
|
|
clip: true
|
|
|
|
Column {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
Jet.TaskPropView {
|
|
rootConfig: root.rootConfig
|
|
anchors.fill: root
|
|
}
|
|
}
|
|
}
|
|
} |