Explorar el Código

auto commit

master
jfinn hace 3 años
padre
commit
ebc00ac939
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/scene/zoom.ts

+ 1
- 1
src/scene/zoom.ts Ver fichero

@@ -48,8 +48,8 @@ export const getNormalizedZoom = (zoom: number): NormalizedZoomValue => {
48 48
   var fix = 2
49 49
   if (window?.tmp_glob_dev && "nZoomFixed" in window?.tmp_glob_dev ){
50 50
     fix = window.tmp_glob_dev.nZoomFixed
51
-    clog("nfix",fix)
52 51
   }
52
+    clog("nfix",fix)
53 53
 
54 54
   const normalizedZoom = parseFloat(zoom.toFixed(fix));
55 55
   const clampedZoom = Math.max(0.1, Math.min(normalizedZoom, 10));

Loading…
Cancelar
Guardar