Hi,
I’m having trouble with the MultiResolutionImage component. Two examples, where the first one works fine, but the second doesn’t.
// Works fine, it's selecting "qrc://+hd2/MyImage.png" respectively.
MultiResolutionImage {
id: image
source: "qrc:/MyImage.png"
}
// This doesn't work at all. It's not changing the source depending on resolution.
MultiResolutionImage {
id: image
source: myObject.image // "qrc:/MyImage.png"
}
Either I’m too stupid to see my mistake or it’s a bug.