Minor improvements to denoise tools. Fixed a minor annoyance with zoom panel.

This commit is contained in:
Emil Martinec
2010-09-15 21:39:55 -05:00
parent 07d5e041d0
commit 08885a7d77
5 changed files with 3246 additions and 3249 deletions

View File

@@ -111,7 +111,11 @@ void ZoomPanel::refreshZoomLabel () {
if (iarea->mainCropWindow) {
int z = (int)(iarea->mainCropWindow->getZoom () * 100);
zoomLabel->set_text (Glib::ustring::compose("%1%%", z));
if (z<100) {
zoomLabel->set_text (Glib::ustring::compose(" %1%%", z));
} else {
zoomLabel->set_text (Glib::ustring::compose("%1%%", z));
}
}
}