mirror of
https://github.com/lubosz/overte.git
synced 2025-04-15 19:47:38 +02:00
Merge pull request #15894 from RebeccaStankus/fixCreate
BUGZ 915 Create does not work in HMD
This commit is contained in:
commit
c0e8bc9080
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
WebView {
|
||||
id: entityListToolWebView
|
||||
url: QT.resolvedURL("../html/entityList.html")
|
||||
url: Qt.resolvedUrl("../html/entityList.html")
|
||||
enabled: true
|
||||
blurOnCtrlShift: false
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue