mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 16:38:27 +02:00
Move entity list qml to scripts dir
This commit is contained in:
parent
649a22a70b
commit
133ac0662a
2 changed files with 12 additions and 1 deletions
11
scripts/system/libraries/EditEntityList.qml
Normal file
11
scripts/system/libraries/EditEntityList.qml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import QtQuick 2.7
|
||||||
|
import QtQuick.Controls 2.2
|
||||||
|
import QtWebChannel 1.0
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
import "qrc:///qml/controls" as HifiControls
|
||||||
|
|
||||||
|
HifiControls.WebView {
|
||||||
|
id: entityListToolWebView
|
||||||
|
url: Qt.resolvedUrl("../html/entityList.html")
|
||||||
|
enabled: true
|
||||||
|
}
|
|
@ -20,7 +20,7 @@ EntityListTool = function(shouldUseEditTabletApp) {
|
||||||
var ENTITY_LIST_WIDTH = 495;
|
var ENTITY_LIST_WIDTH = 495;
|
||||||
var MAX_DEFAULT_CREATE_TOOLS_HEIGHT = 778;
|
var MAX_DEFAULT_CREATE_TOOLS_HEIGHT = 778;
|
||||||
var entityListWindow = new CreateWindow(
|
var entityListWindow = new CreateWindow(
|
||||||
Script.resourcesPath() + "qml/hifi/tablet/EditEntityList.qml",
|
Script.resolvePath("EditEntityList.qml"),
|
||||||
'Entity List',
|
'Entity List',
|
||||||
'com.highfidelity.create.entityListWindow',
|
'com.highfidelity.create.entityListWindow',
|
||||||
function () {
|
function () {
|
||||||
|
|
Loading…
Reference in a new issue