IDEA-88218 Image editor: Zoom In after many Zoom Out stops working before bringing the image back to actual size

This commit is contained in:
peter
2012-07-04 20:27:29 +02:00
parent 433f988b40
commit bf8e7110c1
@@ -277,7 +277,7 @@ final class ImageEditorUI extends JPanel implements DataProvider {
// Micro
double minFactor = getMinimumZoomFactor();
double stepSize = (1.0d - minFactor) / MICRO_ZOOM_LIMIT;
int step = (int) Math.ceil((1.0d - factor) / stepSize);
double step = (1.0d - factor) / stepSize;
setZoomFactor(1.0d - stepSize * (step - 1));
}