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

@@ -31,13 +31,13 @@ struct ZoomStep {
int czoom;
};
ZoomStep zoomSteps[] = {{"10%", 0.1, 10},
ZoomStep zoomSteps[] = {{" 10%", 0.1, 10},
{"12.5%", 0.125, 8},
{"16.6%", 1.0/6.0, 6},
{"20%", 0.2, 5},
{"25%", 0.25, 4},
{"33%", 1.0/3.0, 3},
{"50%", 0.5, 2},
{" 20%", 0.2, 5},
{" 25%", 0.25, 4},
{" 33%", 1.0/3.0, 3},
{" 50%", 0.5, 2},
{"100%", 1.0, 1000},
{"200%", 2.0, 2000},
{"300%", 3.0, 3000},