HImage: limit spinner size to 96
This commit is contained in:
parent
11fb32bff6
commit
84a41e09e1
|
@ -105,7 +105,9 @@ Image {
|
|||
}
|
||||
|
||||
anchors.centerIn: parent
|
||||
width: Math.min(parent.width, parent.height) * 0.5
|
||||
width: Math.min(
|
||||
96 * theme.uiScale, Math.min(parent.width, parent.height) * 0.5,
|
||||
)
|
||||
height: width
|
||||
active: image.status === Image.Loading
|
||||
sourceComponent: HBusyIndicator {}
|
||||
|
|
Loading…
Reference in New Issue
Block a user