mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fixed Qt.resolvedUrl format
This commit is contained in:
parent
7b3fa22d0c
commit
352f9590b1
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