Prevent warnings about assigning undefined values

pull/1600/head
Jon Beniston 2023-02-16 14:29:17 +00:00
rodzic 83fca6a97b
commit 8163dcb0ab
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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 {