Hello Juan,
Take the bug.
Definition at line 1996 of file ImageWindow.h.
01996 void ZoomOut()
01997 {
01998 int z = ZoomFactor() - 1;
01999 SetZoomFactor( (z != 0) ? z : -1 );
02000 }
It's doesn't work properly because SetZoomFactor ( -1 ) rally set ZoomFactor() == +1;
Work around: use SetZoomFactor( (z != 0) ? z : -2 );
Best regards,
Nikolay.