fixed typo in showing zoom percentage when the zoom factor is >= 1
This commit is contained in:
@@ -116,7 +116,7 @@ void CropWindow::initZoomSteps()
|
|||||||
}
|
}
|
||||||
zoom11index = zoomSteps.size();
|
zoom11index = zoomSteps.size();
|
||||||
for (int s = 1; s <= 8; ++s) {
|
for (int s = 1; s <= 8; ++s) {
|
||||||
sprintf(lbl, "%d00", s);
|
sprintf(lbl, "%d00%%", s);
|
||||||
zoomSteps.push_back(ZoomStep(lbl, s, s * 1000));
|
zoomSteps.push_back(ZoomStep(lbl, s, s * 1000));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user