fix(StatusRoundedImage): ensure images are scaled and positioned properly
Closes #172
This commit is contained in:
parent
70332a3f41
commit
3d0688b778
|
@ -26,9 +26,12 @@ Rectangle {
|
|||
|
||||
Image {
|
||||
id: image
|
||||
sourceSize.width: parent.implicitWidth
|
||||
sourceSize.height: parent.implicitHeight
|
||||
width: statusRoundImage.width
|
||||
height: statusRoundImage.height
|
||||
sourceSize.width: parent.width * 2
|
||||
sourceSize.height: parent.height * 2
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
cache: true
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue