summaryrefslogtreecommitdiffstats
path: root/macosx/PictureController.mm
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PictureController.mm')
-rw-r--r--macosx/PictureController.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/PictureController.mm b/macosx/PictureController.mm
index 1fa248bde..58888f2a0 100644
--- a/macosx/PictureController.mm
+++ b/macosx/PictureController.mm
@@ -32,10 +32,10 @@ static int GetAlignedSize( int size )
[fWidthStepper setValueWraps: NO];
[fWidthStepper setIncrement: 16];
- [fWidthStepper setMinValue: 32];
+ [fWidthStepper setMinValue: 64];
[fHeightStepper setValueWraps: NO];
[fHeightStepper setIncrement: 16];
- [fHeightStepper setMinValue: 32];
+ [fHeightStepper setMinValue: 64];
[fCropTopStepper setIncrement: 2];
[fCropTopStepper setMinValue: 0];
@@ -351,7 +351,7 @@ static int GetAlignedSize( int size )
crashing hb_get_preview. In fact, just for kicks
lets getting previews at a min limit of 32, since
no human can see any meaningful detail below that */
- if (job->width >= 32 && job->height >= 32)
+ if (job->width >= 64 && job->height >= 64)
{
[self Display: HB_ANIMATE_NONE];
}