Merge pull request #15894 from RebeccaStankus/fixCreate

BUGZ 915 Create does not work in HMD
This commit is contained in:
Zach Fox 2019-07-05 17:05:28 -07:00 committed by GitHub
commit c0e8bc9080
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
WebView {
id: entityListToolWebView
url: QT.resolvedURL("../html/entityList.html")
url: Qt.resolvedUrl("../html/entityList.html")
enabled: true
blurOnCtrlShift: false
}

View file

@ -247,7 +247,7 @@ TabBar {
property Component visualItem: Component {
WebView {
id: entityPropertiesWebView
url: Qt.resolvedURL("../entityProperties/html/entityProperties.html")
url: Qt.resolvedUrl("../entityProperties/html/entityProperties.html")
enabled: true
blurOnCtrlShift: false
}
@ -263,7 +263,7 @@ TabBar {
property Component visualItem: Component {
WebView {
id: gridControlsWebView
url: Qt.resolvedURL("../../html/gridControls.html")
url: Qt.resolvedUrl("../../html/gridControls.html")
enabled: true
blurOnCtrlShift: false
}