fixed typo in showing zoom percentage when the zoom factor is >= 1

This commit is contained in:
Alberto Griggio 2017-03-16 16:48:08 +01:00
parent feed87d046
commit d41bd0d7e3

View File

@ -116,7 +116,7 @@ void CropWindow::initZoomSteps()
}
zoom11index = zoomSteps.size();
for (int s = 1; s <= 8; ++s) {
sprintf(lbl, "%d00", s);
sprintf(lbl, "%d00%%", s);
zoomSteps.push_back(ZoomStep(lbl, s, s * 1000));
}
}