Prevent warnings about assigning undefined values

This commit is contained in:
Jon Beniston 2023-02-16 14:29:17 +00:00
parent 83fca6a97b
commit 8163dcb0ab
1 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,8 @@ Item {
anchorPoint.x: image.width/2
anchorPoint.y: image.height/2
coordinate: position
zoomLevel: mapZoomLevel > mapImageMinZoom ? mapZoomLevel : mapImageMinZoom
// when zooming, mapImageMinZoom can be temporarily undefined. Not sure why
zoomLevel: (typeof mapImageMinZoom !== 'undefined') ? (mapZoomLevel > mapImageMinZoom ? mapZoomLevel : mapImageMinZoom) : zoomLevel
autoFadeIn: false // not in 5.12
sourceItem: Grid {