mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 04:08:13 +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 {
|
WebView {
|
||||||
id: entityListToolWebView
|
id: entityListToolWebView
|
||||||
url: QT.resolvedURL("../html/entityList.html")
|
url: Qt.resolvedUrl("../html/entityList.html")
|
||||||
enabled: true
|
enabled: true
|
||||||
blurOnCtrlShift: false
|
blurOnCtrlShift: false
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,7 +247,7 @@ TabBar {
|
||||||
property Component visualItem: Component {
|
property Component visualItem: Component {
|
||||||
WebView {
|
WebView {
|
||||||
id: entityPropertiesWebView
|
id: entityPropertiesWebView
|
||||||
url: Qt.resolvedURL("../entityProperties/html/entityProperties.html")
|
url: Qt.resolvedUrl("../entityProperties/html/entityProperties.html")
|
||||||
enabled: true
|
enabled: true
|
||||||
blurOnCtrlShift: false
|
blurOnCtrlShift: false
|
||||||
}
|
}
|
||||||
|
@ -263,7 +263,7 @@ TabBar {
|
||||||
property Component visualItem: Component {
|
property Component visualItem: Component {
|
||||||
WebView {
|
WebView {
|
||||||
id: gridControlsWebView
|
id: gridControlsWebView
|
||||||
url: Qt.resolvedURL("../../html/gridControls.html")
|
url: Qt.resolvedUrl("../../html/gridControls.html")
|
||||||
enabled: true
|
enabled: true
|
||||||
blurOnCtrlShift: false
|
blurOnCtrlShift: false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue