fixed typo in showing zoom percentage when the zoom factor is >= 1
This commit is contained in:
parent
feed87d046
commit
d41bd0d7e3
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user