mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 05:48:26 +02:00
fix relative path
This commit is contained in:
parent
5b8e80654d
commit
53263789a0
2 changed files with 3 additions and 3 deletions
|
@ -84,7 +84,7 @@ Item {
|
||||||
id: muteIcon
|
id: muteIcon
|
||||||
width: 40
|
width: 40
|
||||||
height: 40
|
height: 40
|
||||||
source: "icons/tablet-mute-icon.svg"
|
source: "../../../icons/tablet-mute-icon.svg"
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
}
|
}
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -197,7 +197,7 @@ Item {
|
||||||
|
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: muteIcon
|
target: muteIcon
|
||||||
source: "icons/tablet-unmute-icon.svg"
|
source: "../../../icons/tablet-unmute-icon.svg"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -32,7 +32,7 @@ Item {
|
||||||
anchors.bottomMargin: 5
|
anchors.bottomMargin: 5
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
fillMode: Image.Stretch
|
fillMode: Image.Stretch
|
||||||
source: tabletButton.icon
|
source: "../../../" + tabletButton.icon
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
|
Loading…
Reference in a new issue