Merge from default branch

This commit is contained in:
ffsup2
2010-09-24 22:49:15 +02:00
parent 18d6799cbe
commit dc2350cee8
145 changed files with 23287 additions and 17316 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));
}
}
}