Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[mms_attachment_image] Mark non-jpeg attachments as resizable
if we have either ImageMagick or Qt available to do the resizing for us
  • Loading branch information
monich committed Mar 31, 2014
1 parent 07d474d commit 4f70707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mms-lib/src/mms_attachment_image.c
Expand Up @@ -317,7 +317,7 @@ void
mms_attachment_image_init(
MMSAttachmentImage* image)
{
#ifdef MMS_RESIZE_IMAGEMAGICK
#if defined(MMS_RESIZE_IMAGEMAGICK) || defined(MMS_RESIZE_QT)
image->attachment.flags |= MMS_ATTACHMENT_RESIZABLE;
#endif
}
Expand Down

0 comments on commit 4f70707

Please sign in to comment.